]> git.lizzy.rs Git - shadowclad.git/blob - src/player.h
19898d58b57381985598944d894e331f44d914ab
[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 spawnPlayer();
16
17 #endif