26 lines
278 B
C++
26 lines
278 B
C++
/*
|
|
* GameManager.h
|
|
*
|
|
* Created on: 4 nov. 2020
|
|
* Author: simon
|
|
*/
|
|
|
|
#ifndef GAME_GAMEMANAGER_H_
|
|
#define GAME_GAMEMANAGER_H_
|
|
|
|
namespace GameManager {
|
|
|
|
void render();
|
|
void init();
|
|
void destroy();
|
|
void tick();
|
|
|
|
void startServer();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* GAME_GAMEMANAGER_H_ */
|