1
0
mirror of https://github.com/ssloy/tinyraycaster.git synced 2025-01-17 21:28:31 +01:00
tinyraycaster/player.h
2019-02-10 08:07:41 +01:00

12 lines
170 B
C

#ifndef PLAYER_H
#define PLAYER_H
struct Player {
float x, y; // position
float a; // view direction
float fov; // field of view
};
#endif // PLAYER_H