blob: c188378cf0ff06f623f8bef1b97f3ecdf58271b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __ASURA_ENGINE_PORTABLE_H__
#define __ASURA_ENGINE_PORTABLE_H__
#include "Luax.hpp"
#include "Config.h"
#include "Type.h"
namespace AsuraEngine
{
namespace Scripting
{
using Portable = Luax::LuaxClass;
}
}
#endif
|