mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 14:43:10 +02:00
22 lines
449 B
C++
22 lines
449 B
C++
// Copyright [2023] Krzysztof Rudnicki
|
|
#ifndef HOME_KUCHY_ENGINEER_THESIS_WUT_BREAKOUT_GAME_CPP
|
|
#define HOME_KUCHY_ENGINEER_THESIS_WUT_BREAKOUT_GAME_CPP
|
|
#include "../breakout/game.hpp"
|
|
|
|
|
|
|
|
Game::Game(GameWindowSize size)
|
|
: State(GAME_ACTIVE), Keys(), Width(size.width), Height(size.height) {
|
|
}
|
|
|
|
void Game::Init() {}
|
|
|
|
void Game::Update(double deltaTime) {}
|
|
|
|
void Game::ProcessInput(double deltaTime) {}
|
|
|
|
void Game::Render() {}
|
|
|
|
#endif
|
|
// GAME_CPP
|