jtmm2/include/player.h

16 lines
234 B
C
Raw Normal View History

#ifndef _DEF_PLAYER
#define _DEF_PLAYER
#include "vec.h"
2020-09-11 18:07:53 +02:00
#include "camera.h"
typedef struct Player
{
Vec pos;
} Player;
2020-09-11 18:07:53 +02:00
void player_step(Player *player);
void player_draw(Player *player, Camera *camera);
2020-09-11 18:07:53 +02:00
#endif /* _DEF_PLAYER */