browser/external/raylib-cpp-4.5.1/examples/multiple/Player.hpp
2023-09-27 15:02:24 -04:00

11 lines
154 B
C++

#include "raylib-cpp.hpp"
class Player {
public:
Player();
raylib::Rectangle position;
int speed;
void Draw();
void Update();
};