blob: f6f23a87eb0938cc912eb3256cdd50349f86fdb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef __ASURA_SDL_APPLICATION_H__
#define __ASURA_SDL_APPLICATION_H__
#include "sdl_config.h"
namespace AsuraEngine
{
namespace SDL
{
class SDLApplication : public Application
{
};
/*
Application* editor = nullpt;
#ifdef ASURA_SDL
editor = SDLApplication();
#endif
*/
}
}
#endif
|