hyperkaos/HyperKaos.h

21 lines
423 B
C
Raw Permalink Normal View History

typedef struct kaos Kaos;
typedef struct hyperKaos
{
int kaosID;
int eventType;
int tombStone;
SDL_Rect domain;
Kaos* head;
} HyperKaos;
HyperKaos* newHyperKaos(int id, int type, int x, int y, int w, int h);
void deleteHyperKaos(HyperKaos* target);
void cleanHyperKaos(HyperKaos* self);
void run(HyperKaos* self);
void addKaos(HyperKaos* self, Kaos* target);
2019-03-06 00:52:45 +00:00
int hasCompleted(int x);
int notCompleted(int x);