VEGO-Engine
0.1
Loading...
Searching...
No Matches
Game.h
1
#pragma once
2
3
class
GameInternal
;
4
5
// TODO: add managers here
6
class
Game
{
7
public
:
8
virtual
~Game
() {}
9
10
virtual
void
init() = 0;
11
virtual
void
update() = 0;
12
13
GameInternal
*
gameInternal
;
14
};
15
16
17
// game factory include to simplify imports in implementation
18
#include "GameFactory.h"
GameInternal
Definition
GameInternal.h:24
Game
Definition
Game.h:6
Game::gameInternal
GameInternal * gameInternal
Definition
Game.h:13
include
Game.h
Generated by
1.12.0