blob: d6914555abf44561e3a5c6e227e214507d253d0c (
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
31
|
#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"
namespace AsuraEngine
{
namespace 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 AEScripting = AsuraEngine::Scripting;
#endif
|