summaryrefslogtreecommitdiff
path: root/src/game.hpp
blob: 03db8a45d571d3d66108a3293e0ea697de3cac7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include "game_fwd.hpp"
#include "grid.hpp"
#include "wilderness_map.hpp"

/**
 * All structures for the game itself.
 */
struct Game {

	/*
	 * Wilderness map
	 */
	grid<wilderness_map> wilderness;

};

/**
 * Game instance
 */
extern Game *game;