#ifndef PLAYER_H#define PLAYER_H#include"common.h"typedefstructplayer{structxyzpos,velocity;// vectors for the playerfloatangle,anglesin,anglecos,yaw;// angle, and its sine and cosineuintsector;// the sector that the player is in}player_t;// TODO: Add functions to manipulate a player#endif