aboutsummaryrefslogtreecommitdiff
path: root/player.h
blob: 8412bdeb5891ff8258ebf437fd00d475da8e31ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef player_h
#define player_h

struct World;

typedef struct {
	int entity;
	int face;
} Player;

void init_player(Player* player, struct World* world);
void update_player(Player* player, struct World* world);

#endif