Primer commit!

This commit is contained in:
2019-12-12 16:55:10 +01:00
commit 25ef8b9a8d
28 changed files with 2279 additions and 0 deletions

16
jgame.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#include "SDL.h"
void JG_Init();
void JG_Finalize();
void JG_QuitSignal();
bool JG_Quitting();
void JG_SetUpdateTicks(Uint32 milliseconds);
bool JG_ShouldUpdate();
Uint32 JG_GetCycleCounter();