zengine/include/ZE_Defines.h

42 lines
1.4 KiB
C
Raw Normal View History

2002-11-21 05:40:49 +00:00
/*******************************************************************************
2002-12-29 06:50:19 +00:00
This file is Part of the ZEngine Library for 2D game development.
Copyright (C) 2002, 2003 James Turk
2002-11-21 05:40:49 +00:00
2002-12-29 06:50:19 +00:00
Licensed under a BSD-style license.
2002-11-21 05:40:49 +00:00
2002-12-29 06:50:19 +00:00
The maintainer of this library is James Turk (james@conceptofzero.net)
and the home of this Library is http://www.zengine.sourceforge.net
2002-11-21 05:40:49 +00:00
*******************************************************************************/
/*!
\par File Header:
File: ZE_Defines.h <br>
Description: Defines header file for ZEngine class, where all #define statements to control compilation options are placed. <br>
Author(s): James Turk <br>
2003-02-16 21:38:49 +00:00
$Id: ZE_Defines.h,v 1.8 2003/02/16 21:38:49 cozman Exp $<br>
2002-11-21 05:40:49 +00:00
\file ZE_Defines.h
\brief Define file for ZEngine.
Definition file, holds #define statements describing optional features of ZEngine.
**/
#ifndef __ze_defines_h__
#define __ze_defines_h__
//defines- undefine any of these if you dont have the indicated SDL extension//
//! Define to include font support.
#define USE_SDL_TTF
//! Define to include non-bmp image file support.
#define USE_SDL_IMAGE
//! Define to include sound support.
#define USE_SDL_MIXER
2003-02-16 21:38:49 +00:00
//! Define to include net support.
#define USE_SDL_NET
2002-11-21 05:40:49 +00:00
//! Define to use the Physfs file system.
//#define USE_PHYSFS
//! Version number.
2003-01-12 06:08:20 +00:00
#define VERSION "0.8.2"
2002-11-21 05:40:49 +00:00
#endif //__ze_defines_h__