mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
20 lines
227 B
C++
20 lines
227 B
C++
#pragma once
|
|
|
|
#include "lauxlib.h"
|
|
|
|
namespace LuaOsExtension
|
|
{
|
|
extern const luaL_Reg registry[];
|
|
}
|
|
|
|
namespace LuaMathExtension
|
|
{
|
|
int noise(lua_State* L);
|
|
}
|
|
|
|
namespace LuaDebugExtension
|
|
{
|
|
extern const luaL_Reg registry[];
|
|
}
|
|
|