14 lines
466 B
Go
14 lines
466 B
Go
|
|
package org.nieo.seerproject.common.net.info.pet;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.nieo.seerproject.common.annotations.OutboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.annotations.serialize.AutoCodec;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
import org.nieo.seerproject.common.net.OutboundMessage;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@AutoCodec
|
||
|
|
@OutboundMessageType(MessageCommandIDRegistry.Pet_Cure)
|
||
|
|
public class PetCureOutboundInfo implements OutboundMessage {
|
||
|
|
}
|