blob: 657c404ea773aa63a2f14e8b437a6bb28876b5c6 (
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
|
#ifndef __ASRUA_EDITOR_DIRECTUI_MODULE_H__
#define __ASRUA_EDITOR_DIRECTUI_MODULE_H__
#include <asura-utils/module.h>
namespace AsuraEditor
{
///
/// Direct UI module.
///
class DUIModule : public AsuraEngine::Module
{
public:
void Initialize(Luax::LuaxState& state) override;
void Finalize(Luax::LuaxState& state) override;
};
}
#endif
|