(20111213)

This commit is contained in:
2011-12-13 17:00:00 +01:00
commit 8a84d0a0f5
45 changed files with 2001 additions and 0 deletions

33
GameLib.h Normal file
View File

@@ -0,0 +1,33 @@
#ifndef _GAMELIB_H_
#define _GAMELIB_H_
#include "Draw.h"
#include "Input.h"
#include "Audio.h"
#include "Entity.h"
/////////////////////////////
// GameLib_Init
//
// Initializes the game.
int GameLib_Init(int w,int h,char *title,int fps);
/////////////////////////////
// GameLib_Loop
//
// Loops the game.
void GameLib_Loop();
/////////////////////////////
// GameLib_BreakLoop
//
// Breaks the game loop.
void GameLib_BreakLoop();
#endif