21 lines
290 B
C++
21 lines
290 B
C++
//
|
|
// Created by trotfunky on 27/05/19.
|
|
//
|
|
|
|
#ifndef RAYCASTING_PLAYER_H
|
|
#define RAYCASTING_PLAYER_H
|
|
|
|
|
|
class Player {
|
|
public:
|
|
Player(float x, float y, float alpha);
|
|
|
|
float x;
|
|
float y;
|
|
float orientation;
|
|
|
|
static constexpr float fov = 70;
|
|
};
|
|
|
|
|
|
#endif //RAYCASTING_PLAYER_H
|