Files
bl/common/core/info/pet/PetStudySkillOutboundInfo.java

18 lines
605 B
Go
Raw Normal View History

package org.nieo.seerproject.common.net.info.pet;
import lombok.Builder;
import lombok.Data;
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;
@Data
@Builder
@AutoCodec
@OutboundMessageType(MessageCommandIDRegistry.Pet_Study_Skill)
public class PetStudySkillOutboundInfo implements OutboundMessage {
private @UInt long catchTime;
}