Example #1
0
void StartGameLoop(void) {
	while (GameLoopEnabled) {
		GameFrame();
		GameCoreTick();
		count++;
	}

}
Example #2
0
bool KCore::GameRun()
{
	GameFrame();
	GameRender();
	return true;
};