15 lines
498 B
Go
15 lines
498 B
Go
|
|
package org.nieo.seerproject.common.net.info.map;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.nieo.seerproject.common.annotations.InboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.net.InboundMessage;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
|
||
|
|
import javax.annotation.Nonnull;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@InboundMessageType(MessageCommandIDRegistry.Map_Hot)
|
||
|
|
public class MapHotInboundInfo implements InboundMessage {
|
||
|
|
public static final @Nonnull MapHotInboundInfo INSTANCE = new MapHotInboundInfo();
|
||
|
|
}
|