#ifndef PLAYER_H_ #define PLAYER_H_ #include #include "asset.h" typedef struct { const Asset3D* asset3D; } PlayerCharacter; void spawnPlayer(); #endif