blob: e3c5befc896a93615bf178f6ea0a78cba966db86 (
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 "Luax.hpp"
#include "Config.h"
#include "Type.h"
namespace AsuraEngine
{
namespace Scripting
{
///
/// Ҫluaļ̳д
///
template<typename T>
using Portable = Luax::LuaxClass<T>;
}
}
#endif
|