mirror of
https://github.com/ssloy/tinyraycaster.git
synced 2025-01-17 05:08:22 +01:00
13 lines
190 B
C
13 lines
190 B
C
#ifndef PLAYER_H
|
|
#define PLAYER_H
|
|
|
|
struct Player {
|
|
float x, y; // position
|
|
float a; // view direction
|
|
float fov; // field of view
|
|
int turn, walk;
|
|
};
|
|
|
|
#endif // PLAYER_H
|
|
|