Changed license to Creative Commons Zero (CC0).
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / textEditorComponent / Character.java
1 /*
2  * Sixth 3D engine. Author: Svjatoslav Agejenko. 
3  * This project is released under Creative Commons Zero (CC0) license.
4  *
5 *
6  */
7
8 package eu.svjatoslav.sixth.e3d.gui.textEditorComponent;
9
10 public class Character {
11
12     char value;
13
14     // TODO: background and foreground colors
15
16     public Character(final char value) {
17         this.value = value;
18     }
19
20     boolean hasValue() {
21         return value != ' ';
22     }
23 }