29 lines
434 B
Go
29 lines
434 B
Go
package rtimepvp
|
|
|
|
import (
|
|
"go_dreamfactory/comm"
|
|
"go_dreamfactory/lego/base"
|
|
"go_dreamfactory/lego/core"
|
|
"go_dreamfactory/modules"
|
|
)
|
|
|
|
/*
|
|
模块名:实时PVP
|
|
描述:同步战斗模块
|
|
开发:李伟
|
|
*/
|
|
func NewModule() core.IModule {
|
|
m := new(RTimePVP)
|
|
return m
|
|
}
|
|
|
|
type RTimePVP struct {
|
|
modules.ModuleBase
|
|
service base.IRPCXService
|
|
}
|
|
|
|
//模块名
|
|
func (this *RTimePVP) GetType() core.M_Modules {
|
|
return comm.ModuleRTimePVP
|
|
}
|