1
0

Setting up

This commit is contained in:
2022-10-19 14:27:04 +02:00
commit e211fb13c3
14 changed files with 8444 additions and 0 deletions

33
src/game.cpp Normal file
View File

@@ -0,0 +1,33 @@
#include "game.h"
Game::~Game()
{
}
Game::Game(unsigned int width, unsigned int height)
{
}
void Game::Init()
{
}
void Game::ProcessInput(float dt)
{
}
void Game::Update(float dt)
{
}
void Game::Render()
{
}