go_dreamfactory/modules/entertainment/room.go
2023-10-16 14:57:29 +08:00

19 lines
282 B
Go

package entertainment
import (
"go_dreamfactory/comm"
"go_dreamfactory/pb"
"google.golang.org/protobuf/proto"
)
//游戏房间
type Room struct {
Id string
}
func (this *Room) ReceiveMessage(session comm.IUserSession, req proto.Message) (errdata *pb.ErrorData) {
return
}