17 lines
186 B
C++
17 lines
186 B
C++
#ifndef ZOBJECT_H
|
|
#define ZOBJECT_H
|
|
|
|
extern "C" {
|
|
#include <lua.h>
|
|
}
|
|
|
|
namespace wherigo {
|
|
|
|
int zobject_MoveTo(lua_State *L);
|
|
int zobject_Contains(lua_State *L);
|
|
|
|
}
|
|
|
|
#endif // ZOBJECT_H
|
|
|