mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 17:22:27 +08:00
9 lines
120 B
Go
9 lines
120 B
Go
package constant
|
|
|
|
const (
|
|
LIFE_STATE_NONE = 0
|
|
LIFE_STATE_ALIVE = 1
|
|
LIFE_STATE_DEAD = 2
|
|
LIFE_STATE_REVIVE = 3
|
|
)
|