Symbols can be printable characters only (are stored in saved_moves as plain text).
Definition at line 9 of file ControlSym.h.
Public Member Functions | |
ControlSym (char up, char down, char left, char right) | |
char | getUp () const |
char | getDown () const |
char | getLeft () const |
char | getRight () const |
Static Public Attributes | |
static const char | SYM_NONE = 0 |
|
Definition at line 18 of file ControlSym.h. 00019 : m_up(up), m_down(down), m_left(left), m_right(right) 00020 {}
|
|
Definition at line 23 of file ControlSym.h. 00023 { return m_down; }
|
|
Definition at line 24 of file ControlSym.h. 00024 { return m_left; }
|
|
Definition at line 25 of file ControlSym.h. 00025 { return m_right; }
|
|
Definition at line 22 of file ControlSym.h. 00022 { return m_up; }
|
|
Definition at line 11 of file ControlSym.h. |