f22995f077c45ed5c83c736175bedcf5f26ab2a0
[sixth-3d.git] / src / main / java / eu / svjatoslav / sixth / e3d / gui / textEditorComponent / Character.java
1 /*
2  * Sixth 3D engine. Copyright ©2012-2018, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 3 of the GNU Lesser General Public License
6  * or later as published by the Free Software Foundation.
7  *
8  */
9
10 package eu.svjatoslav.sixth.e3d.gui.textEditorComponent;
11
12 public class Character {
13
14     char value;
15
16     // TODO: background and foreground colors
17
18     public Character(final char value) {
19         this.value = value;
20     }
21
22     boolean isEmpty() {
23         return value == ' ';
24     }
25 }