mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
15 lines
221 B
C#
15 lines
221 B
C#
namespace LuaInterface
|
|
{
|
|
public enum LuaGCOptions
|
|
{
|
|
LUA_GCSTOP = 0,
|
|
LUA_GCRESTART = 1,
|
|
LUA_GCCOLLECT = 2,
|
|
LUA_GCCOUNT = 3,
|
|
LUA_GCCOUNTB = 4,
|
|
LUA_GCSTEP = 5,
|
|
LUA_GCSETPAUSE = 6,
|
|
LUA_GCSETSTEPMUL = 7
|
|
}
|
|
}
|