| ryenus | f4bb502 | 2017-08-03 17:43:28 +0800 | [diff] [blame] | 1 | #ifndef HEADER_CommandScreen |
| 2 | #define HEADER_CommandScreen | ||||
| 3 | |||||
| 4 | #include "InfoScreen.h" | ||||
| 5 | |||||
| 6 | typedef struct CommandScreen_ { | ||||
| 7 | InfoScreen super; | ||||
| 8 | } CommandScreen; | ||||
| 9 | |||||
| Christian Göttsche | ba282cf | 2020-10-05 13:19:50 +0200 | [diff] [blame^] | 10 | extern const InfoScreenClass CommandScreen_class; |
| ryenus | f4bb502 | 2017-08-03 17:43:28 +0800 | [diff] [blame] | 11 | |
| 12 | CommandScreen* CommandScreen_new(Process* process); | ||||
| 13 | |||||
| 14 | void CommandScreen_delete(Object* this); | ||||
| 15 | |||||
| 16 | #endif | ||||