Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/LuaInterface/LuaThreadStatus.cs
2025-08-13 09:26:42 +08:00

12 lines
153 B
C#

namespace LuaInterface
{
public enum LuaThreadStatus
{
LUA_YIELD = 1,
LUA_ERRRUN = 2,
LUA_ERRSYNTAX = 3,
LUA_ERRMEM = 4,
LUA_ERRERR = 5
}
}