13 lines
157 B
C
13 lines
157 B
C
#ifndef STATE_H
|
|
#define STATE_H
|
|
|
|
#include "townengine/game_api.h"
|
|
|
|
/* populate it with state information */
|
|
struct state {
|
|
uint64_t counter;
|
|
};
|
|
|
|
|
|
#endif
|