19 lines
282 B
Go
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
|
|
}
|