diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2019-06-12 22:54:25 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2019-06-12 22:54:25 +0200 |
commit | 613191e9e603fe8d1472016c34802156bf308f9f (patch) | |
tree | be4ff368db3146c260a2ac1a20358428bc576b91 /src/editor.h | |
parent | f672aaab75181d327e34d778fcc14701b37c78a7 (diff) | |
download | ascedit-613191e9e603fe8d1472016c34802156bf308f9f.tar.gz |
Diffstat (limited to 'src/editor.h')
-rw-r--r-- | src/editor.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/editor.h b/src/editor.h index 7c5a848..809a8c7 100644 --- a/src/editor.h +++ b/src/editor.h @@ -5,6 +5,9 @@ #include <stdint.h> +#define _MODE_STD 0 +#define _MODE_LINE 1 + class editor : public cObject { public: @@ -21,6 +24,8 @@ public: void setMode(uint8_t _mode); + void accept(); + void update(); private: sPos currentPosition; |