00001 /*************************************************************************** 00002 * NGT Engine - Licensed under the LGPL license * 00003 * Copyright (C) 2005 by Hector Blanco de Frutos * 00004 * hectorblanco@neopontec.com * 00005 * Refer to the LICENSE file to read the full license agreement * 00006 ***************************************************************************/ 00007 00008 // Main engine header 00009 00010 #ifndef ENGINE_H_ 00011 #define ENGINE_H_ 00012 00013 // For debugging 00014 //#include "dmalloc.h" 00015 // In shell: dmalloc -l logfile -i 100 low 00016 00017 00018 00019 // Scripting/Data API 00020 //#include "python_base.h" 00021 //#include "xml_base.h" 00022 00023 #include "SDL/SDL.h" 00024 #include "SDL/SDL_ttf.h" 00025 #include "SDL/SDL_image.h" 00026 #include "SDL/SDL_mixer.h" 00027 00028 //#include "engine_types.h" 00029 00030 //#include "engine_base.h" 00031 00032 00033 // Main engine API and functionality code 00034 #include "engine/engine_base.h" 00035 00036 // Video API 00037 #include "video/video.h" 00038 //#include "video/video_sprites.h" 00039 //#include "video/video_widgets.h" 00040 00041 00042 00043 00044 #endif /*ENGINE_H_*/