19 lines
639 B
Go
19 lines
639 B
Go
|
|
package org.nieo.seerproject.common.net.info.user;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
import org.nieo.seerproject.common.annotations.FieldDescription;
|
||
|
|
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 java.util.List;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@AutoCodec
|
||
|
|
@InboundMessageType(MessageCommandIDRegistry.Change_Cloth)
|
||
|
|
public class ChangePlayerClothInboundInfo implements InboundMessage {
|
||
|
|
@FieldDescription("玩家装备列表")
|
||
|
|
private List<Integer> clothIds;
|
||
|
|
}
|