18 lines
318 B
C
18 lines
318 B
C
#ifndef STATE_BLANK
|
|
#define STATE_BLANK
|
|
#include "../ts_event.h"
|
|
#include "../globals.h"
|
|
#include "../interfaces.h"
|
|
|
|
/* state hooks */
|
|
void initBlankState();
|
|
void freeBlankState();
|
|
|
|
void handleBlankState(struct TSEvent event);
|
|
void processBlankState(int delta);
|
|
void renderBlankState();
|
|
|
|
/* state variables */
|
|
|
|
#endif
|