mirror of
https://github.com/kuhyx/engineer-thesis-WUT.git
synced 2026-07-04 16:43:15 +02:00
44 lines
709 B
C++
44 lines
709 B
C++
|
|
|
|
/*******************************************************************
|
|
** This code is part of Breakout.
|
|
**
|
|
** Breakout is free software: you can redistribute it and/or modify
|
|
** it under the terms of the CC BY 4.0 license as published by
|
|
** Creative Commons, either version 4 of the License, or (at your
|
|
** option) any later version.
|
|
******************************************************************/
|
|
#include "game.hpp"
|
|
|
|
Game::Game(unsigned int width, unsigned int height)
|
|
: State(GAME_ACTIVE), Keys(), Width(width), Height(height)
|
|
{
|
|
|
|
}
|
|
|
|
Game::~Game()
|
|
{
|
|
|
|
}
|
|
|
|
void Game::Init()
|
|
{
|
|
|
|
}
|
|
|
|
void Game::Update(float dt)
|
|
{
|
|
|
|
}
|
|
|
|
void Game::ProcessInput(float dt)
|
|
{
|
|
|
|
}
|
|
|
|
void Game::Render()
|
|
{
|
|
|
|
}
|
|
|