11 lines
154 B
C++
11 lines
154 B
C++
|
#include "raylib-cpp.hpp"
|
||
|
|
||
|
class Player {
|
||
|
public:
|
||
|
Player();
|
||
|
raylib::Rectangle position;
|
||
|
int speed;
|
||
|
void Draw();
|
||
|
void Update();
|
||
|
};
|