2003-11-23 19:27:41 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
This file is Part of the ZEngine Library for 2D game development.
|
2003-12-31 12:24:23 +00:00
|
|
|
Copyright (C) 2002-2004 James Turk
|
2003-11-23 19:27:41 +00:00
|
|
|
|
|
|
|
Licensed under a BSD-style license.
|
|
|
|
|
|
|
|
The maintainer of this library is James Turk (james@conceptofzero.net)
|
|
|
|
and the home of this Library is http://www.zengine.sourceforge.net
|
|
|
|
*******************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ze_defines_h__
|
|
|
|
#define __ze_defines_h__
|
|
|
|
|
|
|
|
//Defines- undefine any of these if you dont have the indicated SDL extension//
|
|
|
|
|
|
|
|
#define ZE_OGL (1)
|
|
|
|
#define ZE_SDL (2)
|
|
|
|
#define GFX_BACKEND (ZE_OGL)
|
|
|
|
|
|
|
|
#define USE_SDL_TTF
|
|
|
|
#define USE_SDL_IMAGE
|
|
|
|
#define USE_SDL_MIXER
|
|
|
|
|
|
|
|
#endif //__ze_defines_h__
|