mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-18 17:34:45 +01:00
12 lines
153 B
C#
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
|
|
}
|
|
}
|