#ifndef PLAYER_H #define PLAYER_H #include "common.h" typedef struct player { struct xyz pos, velocity; // vectors for the player float angle, anglesin, anglecos, yaw; // angle, and its sine and cosine size_t sector; // the sector that the player is in } player_t; int player_update(player_t *player); // TODO: Add functions to manipulate a player #endif