2025-07-17 06:09:52 +08:00
|
|
|
package controller
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"blazing/common/data/entity"
|
2025-07-31 07:31:25 +00:00
|
|
|
"blazing/common/socket/errorcode"
|
2025-07-26 02:06:08 +00:00
|
|
|
"blazing/logic/service/maphot"
|
2025-07-17 06:09:52 +08:00
|
|
|
)
|
|
|
|
|
|
2025-07-31 07:31:25 +00:00
|
|
|
func (h Controller) MapHot(data *maphot.InInfo, c *entity.Player) (result *maphot.OutInfo, err errorcode.ErrorCode) {
|
2025-07-17 06:09:52 +08:00
|
|
|
|
2025-08-11 07:25:18 +00:00
|
|
|
|
2025-07-26 02:06:08 +00:00
|
|
|
result = &maphot.OutInfo{
|
2025-07-25 13:08:57 +00:00
|
|
|
|
2025-07-26 02:06:08 +00:00
|
|
|
HotInfos: make([]maphot.MapHotInfo, 0),
|
2025-07-25 13:08:57 +00:00
|
|
|
}
|
|
|
|
|
|
2025-08-11 07:25:18 +00:00
|
|
|
return
|
2025-07-17 06:09:52 +08:00
|
|
|
}
|