summaryrefslogtreecommitdiff
path: root/Game.h
blob: 265158d5d61034a0ae788df4062b63a5ff03e240 (plain) (blame)
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
34
35
36
37
38
39
40
#ifndef GAMEPLAY_H__
#define GAMEPLAY_H__

/* *******************************************************************
 *  Includes
 * ******************************************************************/

#include "HumanPlayer.h"
#include <stdint.h>

/* *******************************************************************
 *  Defines
 * ******************************************************************/

/* *******************************************************************
 *  Global types definition
 * ******************************************************************/

struct tGameConfig
{
    HumanPlayer* pHumanPlayerData;
    uint8_t u8NHumanPlayers;
    Camera& cam;
};

/* *******************************************************************
 *  Global variables declaration
 * ******************************************************************/

/* *******************************************************************
 *  Global functions declaration
 * ******************************************************************/

void Game(const struct tGameConfig& sGameConfig);

/* *******************************************************************
 *  Class definition
 * ******************************************************************/

#endif /* GAMEPLAY_H__ */