16 lines
600 B
Go
16 lines
600 B
Go
|
|
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;
|
||
|
|
}
|