#pragma once #include "string.h" #include "raylib.h" class Game { public : Game(int width, int height, std::string title); ~Game() noexcept; bool GameShouldClose() const; void Tick(); private: void Draw(); void Update(); int x = 400; int y = 225; int r = 50; };