mirror of
https://github.com/StevenMcLeod/Freecell68k.git
synced 2025-02-18 10:30:31 +00:00
13 lines
183 B
C
13 lines
183 B
C
#ifndef GAMESTATE_H
|
|
#define GAMESTATE_H
|
|
|
|
#include "freecell.h"
|
|
|
|
struct GlobalState {
|
|
FCState fcGame;
|
|
Boolean running;
|
|
};
|
|
|
|
extern struct GlobalState gstate;
|
|
|
|
#endif /* GAMESTATE_H */ |