engineer-thesis-WUT/breakout/game.cpp

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