mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-18 09:24:39 +01:00
12 lines
211 B
C#
12 lines
211 B
C#
namespace LuaInterface
|
|
{
|
|
internal sealed class LuaIndexes
|
|
{
|
|
public static int LUA_REGISTRYINDEX = -10000;
|
|
|
|
public static int LUA_ENVIRONINDEX = -10001;
|
|
|
|
public static int LUA_GLOBALSINDEX = -10002;
|
|
}
|
|
}
|