Files
bl/common/core/info/battle/ChallengeBossInboundInfo.java

16 lines
600 B
Go
Raw Normal View History

package org.nieo.seerproject.common.net.info.battle;
import lombok.Data;
import org.nieo.seerproject.common.annotations.FieldDescription;
import org.nieo.seerproject.common.annotations.InboundMessageType;
import org.nieo.seerproject.common.annotations.serialize.UInt;
import org.nieo.seerproject.common.net.InboundMessage;
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
@Data
@InboundMessageType(MessageCommandIDRegistry.Challenge_Boss)
public class ChallengeBossInboundInfo implements InboundMessage {
@FieldDescription("boss的序号 从0开始")
private @UInt long bossId;
}