14 lines
461 B
Go
14 lines
461 B
Go
|
|
package org.nieo.seerproject.common.net.info.pet;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.nieo.seerproject.common.annotations.InboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.annotations.serialize.AutoCodec;
|
||
|
|
import org.nieo.seerproject.common.net.InboundMessage;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@AutoCodec
|
||
|
|
@InboundMessageType(MessageCommandIDRegistry.Pet_Cure)
|
||
|
|
public class PetCureInboundInfo implements InboundMessage {
|
||
|
|
}
|