blob: e347b6b0647cd873157ce1bece5be922414f9634 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __LUA_PLUGIN_H__
#define __LUA_PLUGIN_H__
#include <BLua.h>
#include <Exceptions.h>
#include <Handle.h>
void LuaLoadPlugin(const String & fname, Lua * L) throw (GeneralException);
void LuaLoadPlugin(Handle * h, Lua * L) throw (GeneralException);
#endif
|