带有座位号的房间实现

This commit is contained in:
kercylan98
2023-05-11 20:21:12 +08:00
parent 47f2267918
commit dfa5f7a063
3 changed files with 108 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package builtin
import "errors"
var (
ErrRoomNotHasPlayer = errors.New("player not exist")
)