1
0
Fork 0
Toy-Raytracer/Player.h
trotFunky f21fc6f805 Ajout de la fonction render au monde
Joueur déplaçable
début du cast de rayon
Trop fatigué pour faire de la trigo
2019-06-01 06:42:29 +02:00

24 lines
337 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;
float fov = 70;
void move(float dx, float dy);
void rotate(int alpha);
};
#endif //RAYCASTING_PLAYER_H