mirror of
https://github.com/edubart/otclient.git
synced 2025-05-05 12:09:20 +02:00
14 lines
318 B
C++
14 lines
318 B
C++
#ifndef FRAMEWORK_LUA_DECLARATIONS_H
|
|
#define FRAMEWORK_LUA_DECLARATIONS_H
|
|
|
|
#include <framework/global.h>
|
|
|
|
class LuaInterface;
|
|
class LuaObject;
|
|
|
|
typedef std::function<int(LuaInterface*)> LuaCppFunction;
|
|
typedef std::unique_ptr<LuaCppFunction> LuaCppFunctionPtr;
|
|
typedef std::shared_ptr<LuaObject> LuaObjectPtr;
|
|
|
|
#endif
|