blob: ef3c48a0159bd26527de95d052093d4842dfec96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _BSHAPE_HPP_
#include <stdio.h>
#include <stdlib.h>
extern "C" {
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
}
int bshape_register(lua_State* L);
#endif
|