16 lines
493 B
Go
16 lines
493 B
Go
|
|
package org.nieo.seerproject.common.net.info.map;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.nieo.seerproject.common.annotations.OutboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
import org.nieo.seerproject.common.net.OutboundMessage;
|
||
|
|
|
||
|
|
import java.util.ArrayList;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@OutboundMessageType(MessageCommandIDRegistry.Map_Hot)
|
||
|
|
public class MapHotOutboundInfo implements OutboundMessage {
|
||
|
|
private List<MapHotInfo> hotInfos = new ArrayList<>();
|
||
|
|
}
|