Moved code and assets for the game to a seperate folder. Moved jansson and raylib to third_party.
This commit is contained in:
15
src/game/simulation/player.h
Normal file
15
src/game/simulation/player.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef SIM_PLAYER_H
|
||||
#define SIM_PLAYER_H
|
||||
|
||||
#include "simulation/input.h"
|
||||
|
||||
typedef struct {
|
||||
bool active;
|
||||
|
||||
Entity_ID entity_id;
|
||||
Simulation_Game_Input input;
|
||||
// score, name etc.
|
||||
|
||||
} Simulation_Player;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user