blob: 7f780d1676ade8bd4f3edd21cbf7c8c5e2d18bf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef __ASURA_ENGINE_PORTABLE_H__
#define __ASURA_ENGINE_PORTABLE_H__
#include "../type.h"
#include "Luax.hpp"
namespace AsuraEngine
{
namespace Scripting
{
///
/// ҪעluanativeҪ̳дģ塣
///
template<typename T>
using Portable = Luax::LuaxNativeClass<T>;
}
}
#endif
|