summaryrefslogtreecommitdiff
path: root/src/game.cpp
blob: 6fff8215651d52c9ffa454c4d2deb88293bae23b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "common.hpp"

namespace game {

void state_t::start(void)
{
	human_t *human;

	human = new human_t;
	human->bounds.left = 0.2f;
	human->bounds.top = 0.2f;
	human->bounds.width = 1.0f;
	human->bounds.height = 1.0f;
	human->link(&world);
}

void state_t::tick(void)
{
}

} //namespace game