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

12 lines
170 B
C
Raw Normal View History

2019-02-09 20:02:38 +01:00
#ifndef PLAYER_H
#define PLAYER_H
struct Player {
float x, y; // position
float a; // view direction
float fov; // field of view
};
#endif // PLAYER_H