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