summaryrefslogtreecommitdiff
path: root/source/modules/asura-utils/scripting/portable.hpp
blob: 2716da47d0520b25ee8ebb03b0df9dc60092c474 (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
32
33
34
35
#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