blob: 350a409befc82272ea1904d1b859065aaeb7ca87 (
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
30
|
#ifndef _ASURA_ENGINE_PORTABLE_H_
#define _ASURA_ENGINE_PORTABLE_H_
extern "C" {
#include <lua51/lua.h>
#include <lua51/lualib.h>
#include <lua51/lauxlib.h>
}
#include <luax/luax.h>
#include "../Type.h"
#include "../Classes.h"
namespace_begin(AsuraEngine)
namespace_begin(Scripting)
// ҪΪ࣬userdatamember ref̳д࣬ע̳С
using Object = Luax::LuaxObject;
// ҪעluanativeҪ̳дģ塣BASEָ࣬ĬLuaxObjectָLuaxObjectࡢ
template<typename TYPE, typename BASE = Luax::LuaxObject>
using Portable = Luax::LuaxNativeClass<TYPE, BASE>;
namespace_end
namespace_end
namespace AEScripting = AsuraEngine::Scripting;
#endif
|