20 lines
697 B
Go
20 lines
697 B
Go
|
|
package org.nieo.seerproject.common.net.info.pet;
|
||
|
|
|
||
|
|
import lombok.Builder;
|
||
|
|
import lombok.Data;
|
||
|
|
import org.nieo.seerproject.common.annotations.FieldDescription;
|
||
|
|
import org.nieo.seerproject.common.annotations.OutboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.annotations.serialize.AutoCodec;
|
||
|
|
import org.nieo.seerproject.common.annotations.serialize.UInt;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
import org.nieo.seerproject.common.net.OutboundMessage;
|
||
|
|
|
||
|
|
@AutoCodec
|
||
|
|
@Data
|
||
|
|
@Builder
|
||
|
|
@OutboundMessageType(MessageCommandIDRegistry.Pet_Set_Exp)
|
||
|
|
public class PetSetExpOutboundInfo implements OutboundMessage {
|
||
|
|
@FieldDescription("剩余累计经验")
|
||
|
|
private @UInt long exp;
|
||
|
|
}
|