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

16 lines
581 B
Go
Raw Normal View History

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;
import org.nieo.seerproject.common.net.info.pet.skill.ChangeSkillInfo;
@Data
@AutoCodec
@InboundMessageType(MessageCommandIDRegistry.Pet_Study_Skill)
public class PetStudySkillInboundInfo implements InboundMessage {
private ChangeSkillInfo skillInfo;
}