00001 #ifndef __NE_SDL_ENGINE_H__
00002 #define __NE_SDL_ENGINE_H__
00003
00004 #ifndef DOXYGEN_IGNORE_TAG
00005
00026 #endif
00027
00028 #include "../../NEngine.h"
00029
00030 namespace NE
00031 {
00032 class Sprite;
00033
00034 class SDL_Engine : public NE::NEngine
00035 {
00036 public:
00037 SDL_Engine(void):NE::NEngine() {}
00038 ~SDL_Engine(void) {}
00039
00040 bool initAPI(void);
00041 bool stopAPI(void);
00042 };
00043 }
00044
00049 #endif