24 lines
491 B
C
24 lines
491 B
C
#ifndef __zengine_h__
|
|
#define __zengine_h__
|
|
|
|
#include "ZE_Defines.h"
|
|
#include "ZE_ZEngine.h"
|
|
#include "ZE_Utility.h"
|
|
#include "ZE_ZImage.h"
|
|
#include "ZE_ZTimer.h"
|
|
#include "ZE_ZConfigFile.h"
|
|
#include "ZE_ZRect.h"
|
|
#include "ZE_ZRandGen.h"
|
|
#include "ZE_ZBaseParticleSystem.h"
|
|
#include "ZE_ZSimpleParticleSystem.h"
|
|
#include "ZE_ZAnimation.h"
|
|
#ifdef USE_SDL_TTF
|
|
#include "ZE_ZFont.h"
|
|
#endif
|
|
#if SND_BACKEND != ZE_NONE
|
|
#include "ZE_ZSound.h"
|
|
#include "ZE_ZMusic.h"
|
|
#endif
|
|
|
|
#endif //__zengine_h__
|