blob: eee343935c1787628e3ea5a961ab39c29692dafb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef __JE_LUA_SOURCE_H__
#define __JE_LUA_SOURCE_H__
namespace JinEngine
{
namespace Lua
{
extern const char* Jin_Lua_Source;
void luaopen_Source(lua_State* L);
}
}
#endif
|