#include "game.h" #ifndef __RAYLIB__ #define __RAYLIB__ #include "raylib.h" #endif #include "ball.h" #include "paddle.h" Ball ball = Ball(); Paddle player = Paddle(); Game::Game(int width, int height, std::string title) { SetTargetFPS(60); // Set our game to run at 60 frames-per-second InitWindow(width, height, title.c_str()); screenWidth = width; screenHeight = height; ball.SetScreenSize(screenWidth, screenHeight); player.Init(); } Game::~Game() { CloseWindow(); // Close window and OpenGL context } bool Game::GameShouldClose() const { return WindowShouldClose(); } void Game::Tick() { BeginDrawing(); Update(); Draw(); EndDrawing(); } void Game::Draw() { ClearBackground(BLACK); // Center Line DrawLine(screenWidth / 2, 0, screenWidth / 2, screenHeight, RAYWHITE); // Draw Ball DrawCircle(ball.x, ball.y, ball.radius, RAYWHITE); // Draw Player Rectangle player.Draw(); } void Game::Update() { ball.Update(); player.Update(); }