jtmm2/include/player.h

15 lines
173 B
C
Raw Normal View History

#ifndef _DEF_PLAYER
#define _DEF_PLAYER
#include "vec.h"
typedef struct Player
{
Vec position;
} Player;
/* draw the player */
void draw_player(Player *player);
#endif