blob: 040c23e77ac44fd5d4bf3159902b9eeff9720e91 (
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
29
|
#ifndef __ASURA_SDL_WINDOW_H__
#define __ASURA_SDL_WINDOW_H__
#include "../../core_config.h"
#if ASURA_CORE_SDL
#include <asura-lib-utils/scripting/portable.hpp>
#include "../../graphics/window.h"
namespace AsuraEngine
{
namespace SDL
{
class SDLWindow ASURA_FINAL
: public Graphics::Window
, public Scripting::Portable<SDLWindow>
{
public:
};
}
}
#endif // ASURA_CORE_SDL
#endif // __ASURA_SDL_WINDOW_H__
|