summaryrefslogtreecommitdiff
path: root/src/player.h
blob: 36f2d7b9f60135988e1576b9116fb29b5de0fe4b (plain)
1
2
3
4
5
6
7
8
9
#ifndef PLAYER_H_
#define PLAYER_H_

#include "entity.h"

void add_player(float xpos, float ypos);
void update_player(struct entity* player, float dt);

#endif // PLAYER_H_