14 lines
473 B
Go
14 lines
473 B
Go
|
|
package org.nieo.seerproject.common.net.info.pet.bag;
|
||
|
|
|
||
|
|
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_Rowei)
|
||
|
|
public class PetRoweiOutboundEmpty implements OutboundMessage {
|
||
|
|
}
|