blob: e1407eeeaa1fb99b3fe2f897e48635e087a0ed91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __ASURA_ENGINE_LUAX_H__
#define __ASURA_ENGINE_LUAX_H__
///
/// Scripting with Lua.
///
#include "Lua51/lua.h"
#include "Lua51/lauxlib.h"
#include "Luax/luax.h"
///
/// ¶luapoartable
///
#include "Portable.h"
#endif
|