summaryrefslogtreecommitdiffhomepage
path: root/src/player.h
blob: 4fea483f6e3dcc8fa324b151dd2555d9ccb418dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "raylib.h"

typedef
struct
{
	Vector3 position;
	Vector3 direction;
	float speed;

}
Player;

void
drawPlayer(Player *player);