2015-12-02 21:58:22 +00:00
|
|
|
#ifndef HEADER_EnvScreen
|
|
|
|
#define HEADER_EnvScreen
|
|
|
|
|
2016-01-12 08:00:58 +00:00
|
|
|
#include "InfoScreen.h"
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "Object.h"
|
|
|
|
#include "Process.h"
|
2015-12-02 21:58:22 +00:00
|
|
|
|
2021-04-29 15:12:43 +00:00
|
|
|
|
2015-12-02 21:58:22 +00:00
|
|
|
typedef struct EnvScreen_ {
|
2016-01-12 08:00:58 +00:00
|
|
|
InfoScreen super;
|
2015-12-02 21:58:22 +00:00
|
|
|
} EnvScreen;
|
|
|
|
|
2020-10-05 11:19:50 +00:00
|
|
|
extern const InfoScreenClass EnvScreen_class;
|
2016-01-12 08:00:58 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
EnvScreen* EnvScreen_new(Process* process);
|
2015-12-02 21:58:22 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void EnvScreen_delete(Object* this);
|
2016-01-12 08:00:58 +00:00
|
|
|
|
2015-12-02 21:58:22 +00:00
|
|
|
#endif
|