Formatting update
[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 package eu.svjatoslav.sixth.e3d.gui.textEditorComponent;
6
7 public class Character {
8
9     char value;
10
11     // TODO: background and foreground colors
12
13     public Character(final char value) {
14         this.value = value;
15     }
16
17     boolean hasValue() {
18         return value != ' ';
19     }
20 }