mirror of
https://github.com/ssloy/tinyraycaster.git
synced 2025-01-17 21:28:31 +01:00
12 lines
170 B
C
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
|
|
|