17 lines
326 B
Go
17 lines
326 B
Go
package controller
|
|
|
|
import (
|
|
"blazing/common/data/entity"
|
|
"blazing/logic/service/maps"
|
|
)
|
|
|
|
func (h Controller) MapHot(data *maps.MapHotInboundInfo, c *entity.Player) (result *maps.MapHotOutboundInfo, err error) {
|
|
|
|
data.Def()
|
|
result = &maps.MapHotOutboundInfo{
|
|
|
|
HotInfos: make([]maps.MapHotInfo, 0),
|
|
}
|
|
|
|
}
|