blob: 171e213c9e315dee70e9c3fb283e007ca5c3c0cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef GST_H
#define GST_H
#include <info.h>
#include <units.h>
#include <map.h>
#define MAXMAP 10
typedef struct {
map map_editor;
army army_bp[8];
int playernum;
map map_battle;
army ar;
int state;
float cam[2];
float starttime;
float coveredtime;
int turn;
float turnspeed;
int turn_until_finish;
int over;
} gamestate;
void gst_init (gamestate *gst);
void gst_destroy (gamestate *gst);
void gst_get_maparmy(gamestate *gst, map **m, army **ar);
void gst_tobattle (gamestate *gst);
void gst_toeditor (gamestate *gst);
void gst_process (gamestate *gst, infos *info, float t);
#endif
|