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