Files
vRp.CD2g_test/game/builtin/world_errors.go
2023-04-25 14:13:15 +08:00

9 lines
207 B
Go

package builtin
import "errors"
var (
ErrWorldPlayerLimit = errors.New("the number of players in the world has reached the upper limit")
ErrWorldReleased = errors.New("the world has been released")
)