package fight type IFightEvent interface { Emit(eventNumber int, args ...interface{}) } type FightEvent struct { } /// /// 发送消息 /// /// /// func (this *FightEvent) Emit(eventNumber int, args ...interface{}) { }