]> git.lizzy.rs Git - shadowclad.git/blob - src/player.h
4b0317cc82de4d08d21a87891ebe98b3cb960ea6
[shadowclad.git] / src / player.h
1 #ifndef PLAYER_H_
2 #define PLAYER_H_
3
4 #include <GL/gl.h>
5
6 #include "asset.h"
7
8 typedef struct {
9         const Asset3D* asset3D;
10 } Character;
11
12 Character playerCharacter;
13 Vector3D playerPos;
14
15 void initPlayer();
16 void spawnPlayer();
17
18 #endif