From 10a0e290ac07524dc129cc2b227b0f9e95df0f8e Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 16 Apr 2012 09:39:52 -0500 Subject: first commit --- stdafx.h | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100755 stdafx.h (limited to 'stdafx.h') diff --git a/stdafx.h b/stdafx.h new file mode 100755 index 0000000..73a6e50 --- /dev/null +++ b/stdafx.h @@ -0,0 +1,47 @@ +// stdafx.h : include file for standard system include files, +// or project specific include files that are used frequently, but +// are changed infrequently +// + +#pragma once + + +#include + +#include +#include +#include + +//SDL Stuff + +#include "SDL/SDL.h" +#include "SDL_image/SDL_image.h" +#include "SDL_gfx/SDL_gfxPrimitives.h" +#include "SDL_ttf.h" +#include "SDL_mixer/SDL_mixer.h" + +//Lua in CPP + +#include "luavirtualmachine.h" +#include "luascript.h" +#include "luadebugger.h" + +//Lua Stuff + +#include "luainc.h" + +//Actual game stuff. + + +#include "constants.h" + +#include "game_overwatch.h" +#include "gfx.h" +#include "audio.h" +#include "map.h" +#include "actor.h" + + +#ifdef __APPLE__ +#include "CoreFoundation/CoreFoundation.h" +#endif \ No newline at end of file -- cgit