场景LUA触发器

This commit is contained in:
flswld
2023-03-02 19:32:29 +08:00
parent a7b3f41839
commit 58b98f189d
45 changed files with 1044 additions and 878 deletions

View File

@@ -1,8 +1,8 @@
package constant
const (
LIFE_STATE_NONE uint16 = 0
LIFE_STATE_ALIVE uint16 = 1
LIFE_STATE_DEAD uint16 = 2
LIFE_STATE_REVIVE uint16 = 3
LIFE_STATE_NONE = 0
LIFE_STATE_ALIVE = 1
LIFE_STATE_DEAD = 2
LIFE_STATE_REVIVE = 3
)