init commit

This commit is contained in:
flswld
2022-11-20 15:38:00 +08:00
parent eda2b643b9
commit 3efed3defe
5834 changed files with 636508 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package gm
type ForbidUserInfo struct {
UserId uint32
ForbidEndTime uint64
}

View File

@@ -0,0 +1,6 @@
package gm
type KickPlayerInfo struct {
UserId uint32
Reason uint32
}

View File

@@ -0,0 +1,11 @@
package gm
type OnlineUserList struct {
UserList []*OnlineUserInfo `json:"userList"`
}
type OnlineUserInfo struct {
Uid uint32 `json:"uid"`
ConvId uint64 `json:"convId"`
Addr string `json:"addr"`
}