engineer-thesis-WUT/breakout/game.cpp

19 lines
442 B
C++
Raw Normal View History

// Copyright [2023] Krzysztof Rudnicki
2023-07-06 17:35:25 +02:00
#ifndef HOME_KUCHY_ENGINEER_THESIS_WUT_BREAKOUT_GAME_CPP
#define HOME_KUCHY_ENGINEER_THESIS_WUT_BREAKOUT_GAME_CPP
#include "../breakout/game.hpp"
2023-04-02 17:59:15 +02:00
Game::Game(unsigned int width, unsigned int height)
2023-07-06 17:35:25 +02:00
: State(GAME_ACTIVE), Keys(), Width(width), Height(height) {}
2023-04-02 17:59:15 +02:00
2023-07-06 17:35:25 +02:00
void Game::Init() {}
2023-04-02 17:59:15 +02:00
2023-07-06 19:43:08 +02:00
void Game::Update(double dt) {}
2023-04-02 17:59:15 +02:00
2023-07-06 19:43:08 +02:00
void Game::ProcessInput(double dt) {}
2023-04-02 17:59:15 +02:00
2023-07-06 17:35:25 +02:00
void Game::Render() {}
2023-04-02 17:59:15 +02:00
#endif
// GAME_CPP