blob: 68ff9f29ce62a323a3e007160b8239670b9a1f52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef __LUAX_H__
#define __LUAX_H__
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
// include lua.hpp before this
#include "luax_runtime.h"
#include "luax_state.h"
#include "luax_ref.h"
#include "luax_class.h"
#include "luax_module.h"
// luax չluaҪ
// * modules
// * class
// *
#endif
|