mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-06-08 15:33:39 +08:00
Update gc to 3.3 (#1981)
* replace the deprecated api * update proto * delete music game * fixed codes * fix costume switch * fix mail bug * Bump version number. * Re-add max boss chest number Co-authored-by: GanyusLeftHorn <1244229+GanyusLeftHorn@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
Unverified
parent
8b83dbf58c
commit
92fbaa8670
+127
-121
@@ -18,6 +18,12 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
// @@protoc_insertion_point(interface_extends:EvtAvatarLockChairRsp)
|
||||
com.google.protobuf.MessageOrBuilder {
|
||||
|
||||
/**
|
||||
* <code>int32 retcode = 8;</code>
|
||||
* @return The retcode.
|
||||
*/
|
||||
int getRetcode();
|
||||
|
||||
/**
|
||||
* <code>uint64 chair_id = 14;</code>
|
||||
* @return The chairId.
|
||||
@@ -25,38 +31,35 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
long getChairId();
|
||||
|
||||
/**
|
||||
* <code>uint32 entity_id = 15;</code>
|
||||
* <code>uint32 entity_id = 9;</code>
|
||||
* @return The entityId.
|
||||
*/
|
||||
int getEntityId();
|
||||
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
* @return Whether the position field is set.
|
||||
*/
|
||||
boolean hasPosition();
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
* @return The position.
|
||||
*/
|
||||
emu.grasscutter.net.proto.VectorOuterClass.Vector getPosition();
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
*/
|
||||
emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder getPositionOrBuilder();
|
||||
|
||||
/**
|
||||
* <code>int32 retcode = 12;</code>
|
||||
* @return The retcode.
|
||||
*/
|
||||
int getRetcode();
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* CmdId: 366
|
||||
* EnetChannelId: 0
|
||||
* EnetIsReliable: false
|
||||
* IsAllowClient: true
|
||||
* enum CmdId {
|
||||
* option allow_alias = true;
|
||||
* NONE = 0;
|
||||
* CMD_ID = 309;
|
||||
* ENET_CHANNEL_ID = 0;
|
||||
* ENET_IS_RELIABLE = 1;
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* Protobuf type {@code EvtAvatarLockChairRsp}
|
||||
@@ -103,7 +106,22 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
case 0:
|
||||
done = true;
|
||||
break;
|
||||
case 34: {
|
||||
case 64: {
|
||||
|
||||
retcode_ = input.readInt32();
|
||||
break;
|
||||
}
|
||||
case 72: {
|
||||
|
||||
entityId_ = input.readUInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
|
||||
chairId_ = input.readUInt64();
|
||||
break;
|
||||
}
|
||||
case 122: {
|
||||
emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder subBuilder = null;
|
||||
if (position_ != null) {
|
||||
subBuilder = position_.toBuilder();
|
||||
@@ -116,21 +134,6 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
|
||||
break;
|
||||
}
|
||||
case 96: {
|
||||
|
||||
retcode_ = input.readInt32();
|
||||
break;
|
||||
}
|
||||
case 112: {
|
||||
|
||||
chairId_ = input.readUInt64();
|
||||
break;
|
||||
}
|
||||
case 120: {
|
||||
|
||||
entityId_ = input.readUInt32();
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
if (!parseUnknownField(
|
||||
input, unknownFields, extensionRegistry, tag)) {
|
||||
@@ -163,6 +166,17 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
emu.grasscutter.net.proto.EvtAvatarLockChairRspOuterClass.EvtAvatarLockChairRsp.class, emu.grasscutter.net.proto.EvtAvatarLockChairRspOuterClass.EvtAvatarLockChairRsp.Builder.class);
|
||||
}
|
||||
|
||||
public static final int RETCODE_FIELD_NUMBER = 8;
|
||||
private int retcode_;
|
||||
/**
|
||||
* <code>int32 retcode = 8;</code>
|
||||
* @return The retcode.
|
||||
*/
|
||||
@java.lang.Override
|
||||
public int getRetcode() {
|
||||
return retcode_;
|
||||
}
|
||||
|
||||
public static final int CHAIR_ID_FIELD_NUMBER = 14;
|
||||
private long chairId_;
|
||||
/**
|
||||
@@ -174,10 +188,10 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return chairId_;
|
||||
}
|
||||
|
||||
public static final int ENTITY_ID_FIELD_NUMBER = 15;
|
||||
public static final int ENTITY_ID_FIELD_NUMBER = 9;
|
||||
private int entityId_;
|
||||
/**
|
||||
* <code>uint32 entity_id = 15;</code>
|
||||
* <code>uint32 entity_id = 9;</code>
|
||||
* @return The entityId.
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -185,10 +199,10 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return entityId_;
|
||||
}
|
||||
|
||||
public static final int POSITION_FIELD_NUMBER = 4;
|
||||
public static final int POSITION_FIELD_NUMBER = 15;
|
||||
private emu.grasscutter.net.proto.VectorOuterClass.Vector position_;
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
* @return Whether the position field is set.
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -196,7 +210,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return position_ != null;
|
||||
}
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
* @return The position.
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -204,24 +218,13 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return position_ == null ? emu.grasscutter.net.proto.VectorOuterClass.Vector.getDefaultInstance() : position_;
|
||||
}
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
*/
|
||||
@java.lang.Override
|
||||
public emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder getPositionOrBuilder() {
|
||||
return getPosition();
|
||||
}
|
||||
|
||||
public static final int RETCODE_FIELD_NUMBER = 12;
|
||||
private int retcode_;
|
||||
/**
|
||||
* <code>int32 retcode = 12;</code>
|
||||
* @return The retcode.
|
||||
*/
|
||||
@java.lang.Override
|
||||
public int getRetcode() {
|
||||
return retcode_;
|
||||
}
|
||||
|
||||
private byte memoizedIsInitialized = -1;
|
||||
@java.lang.Override
|
||||
public final boolean isInitialized() {
|
||||
@@ -236,17 +239,17 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
@java.lang.Override
|
||||
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
||||
throws java.io.IOException {
|
||||
if (position_ != null) {
|
||||
output.writeMessage(4, getPosition());
|
||||
}
|
||||
if (retcode_ != 0) {
|
||||
output.writeInt32(12, retcode_);
|
||||
output.writeInt32(8, retcode_);
|
||||
}
|
||||
if (entityId_ != 0) {
|
||||
output.writeUInt32(9, entityId_);
|
||||
}
|
||||
if (chairId_ != 0L) {
|
||||
output.writeUInt64(14, chairId_);
|
||||
}
|
||||
if (entityId_ != 0) {
|
||||
output.writeUInt32(15, entityId_);
|
||||
if (position_ != null) {
|
||||
output.writeMessage(15, getPosition());
|
||||
}
|
||||
unknownFields.writeTo(output);
|
||||
}
|
||||
@@ -257,21 +260,21 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
if (size != -1) return size;
|
||||
|
||||
size = 0;
|
||||
if (position_ != null) {
|
||||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeMessageSize(4, getPosition());
|
||||
}
|
||||
if (retcode_ != 0) {
|
||||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeInt32Size(12, retcode_);
|
||||
.computeInt32Size(8, retcode_);
|
||||
}
|
||||
if (entityId_ != 0) {
|
||||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeUInt32Size(9, entityId_);
|
||||
}
|
||||
if (chairId_ != 0L) {
|
||||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeUInt64Size(14, chairId_);
|
||||
}
|
||||
if (entityId_ != 0) {
|
||||
if (position_ != null) {
|
||||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeUInt32Size(15, entityId_);
|
||||
.computeMessageSize(15, getPosition());
|
||||
}
|
||||
size += unknownFields.getSerializedSize();
|
||||
memoizedSize = size;
|
||||
@@ -288,6 +291,8 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
}
|
||||
emu.grasscutter.net.proto.EvtAvatarLockChairRspOuterClass.EvtAvatarLockChairRsp other = (emu.grasscutter.net.proto.EvtAvatarLockChairRspOuterClass.EvtAvatarLockChairRsp) obj;
|
||||
|
||||
if (getRetcode()
|
||||
!= other.getRetcode()) return false;
|
||||
if (getChairId()
|
||||
!= other.getChairId()) return false;
|
||||
if (getEntityId()
|
||||
@@ -297,8 +302,6 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
if (!getPosition()
|
||||
.equals(other.getPosition())) return false;
|
||||
}
|
||||
if (getRetcode()
|
||||
!= other.getRetcode()) return false;
|
||||
if (!unknownFields.equals(other.unknownFields)) return false;
|
||||
return true;
|
||||
}
|
||||
@@ -310,6 +313,8 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
}
|
||||
int hash = 41;
|
||||
hash = (19 * hash) + getDescriptor().hashCode();
|
||||
hash = (37 * hash) + RETCODE_FIELD_NUMBER;
|
||||
hash = (53 * hash) + getRetcode();
|
||||
hash = (37 * hash) + CHAIR_ID_FIELD_NUMBER;
|
||||
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
|
||||
getChairId());
|
||||
@@ -319,8 +324,6 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
hash = (37 * hash) + POSITION_FIELD_NUMBER;
|
||||
hash = (53 * hash) + getPosition().hashCode();
|
||||
}
|
||||
hash = (37 * hash) + RETCODE_FIELD_NUMBER;
|
||||
hash = (53 * hash) + getRetcode();
|
||||
hash = (29 * hash) + unknownFields.hashCode();
|
||||
memoizedHashCode = hash;
|
||||
return hash;
|
||||
@@ -418,10 +421,13 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
}
|
||||
/**
|
||||
* <pre>
|
||||
* CmdId: 366
|
||||
* EnetChannelId: 0
|
||||
* EnetIsReliable: false
|
||||
* IsAllowClient: true
|
||||
* enum CmdId {
|
||||
* option allow_alias = true;
|
||||
* NONE = 0;
|
||||
* CMD_ID = 309;
|
||||
* ENET_CHANNEL_ID = 0;
|
||||
* ENET_IS_RELIABLE = 1;
|
||||
* }
|
||||
* </pre>
|
||||
*
|
||||
* Protobuf type {@code EvtAvatarLockChairRsp}
|
||||
@@ -461,6 +467,8 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
@java.lang.Override
|
||||
public Builder clear() {
|
||||
super.clear();
|
||||
retcode_ = 0;
|
||||
|
||||
chairId_ = 0L;
|
||||
|
||||
entityId_ = 0;
|
||||
@@ -471,8 +479,6 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
position_ = null;
|
||||
positionBuilder_ = null;
|
||||
}
|
||||
retcode_ = 0;
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
@@ -499,6 +505,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
@java.lang.Override
|
||||
public emu.grasscutter.net.proto.EvtAvatarLockChairRspOuterClass.EvtAvatarLockChairRsp buildPartial() {
|
||||
emu.grasscutter.net.proto.EvtAvatarLockChairRspOuterClass.EvtAvatarLockChairRsp result = new emu.grasscutter.net.proto.EvtAvatarLockChairRspOuterClass.EvtAvatarLockChairRsp(this);
|
||||
result.retcode_ = retcode_;
|
||||
result.chairId_ = chairId_;
|
||||
result.entityId_ = entityId_;
|
||||
if (positionBuilder_ == null) {
|
||||
@@ -506,7 +513,6 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
} else {
|
||||
result.position_ = positionBuilder_.build();
|
||||
}
|
||||
result.retcode_ = retcode_;
|
||||
onBuilt();
|
||||
return result;
|
||||
}
|
||||
@@ -555,6 +561,9 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
|
||||
public Builder mergeFrom(emu.grasscutter.net.proto.EvtAvatarLockChairRspOuterClass.EvtAvatarLockChairRsp other) {
|
||||
if (other == emu.grasscutter.net.proto.EvtAvatarLockChairRspOuterClass.EvtAvatarLockChairRsp.getDefaultInstance()) return this;
|
||||
if (other.getRetcode() != 0) {
|
||||
setRetcode(other.getRetcode());
|
||||
}
|
||||
if (other.getChairId() != 0L) {
|
||||
setChairId(other.getChairId());
|
||||
}
|
||||
@@ -564,9 +573,6 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
if (other.hasPosition()) {
|
||||
mergePosition(other.getPosition());
|
||||
}
|
||||
if (other.getRetcode() != 0) {
|
||||
setRetcode(other.getRetcode());
|
||||
}
|
||||
this.mergeUnknownFields(other.unknownFields);
|
||||
onChanged();
|
||||
return this;
|
||||
@@ -596,6 +602,37 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return this;
|
||||
}
|
||||
|
||||
private int retcode_ ;
|
||||
/**
|
||||
* <code>int32 retcode = 8;</code>
|
||||
* @return The retcode.
|
||||
*/
|
||||
@java.lang.Override
|
||||
public int getRetcode() {
|
||||
return retcode_;
|
||||
}
|
||||
/**
|
||||
* <code>int32 retcode = 8;</code>
|
||||
* @param value The retcode to set.
|
||||
* @return This builder for chaining.
|
||||
*/
|
||||
public Builder setRetcode(int value) {
|
||||
|
||||
retcode_ = value;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>int32 retcode = 8;</code>
|
||||
* @return This builder for chaining.
|
||||
*/
|
||||
public Builder clearRetcode() {
|
||||
|
||||
retcode_ = 0;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
|
||||
private long chairId_ ;
|
||||
/**
|
||||
* <code>uint64 chair_id = 14;</code>
|
||||
@@ -629,7 +666,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
|
||||
private int entityId_ ;
|
||||
/**
|
||||
* <code>uint32 entity_id = 15;</code>
|
||||
* <code>uint32 entity_id = 9;</code>
|
||||
* @return The entityId.
|
||||
*/
|
||||
@java.lang.Override
|
||||
@@ -637,7 +674,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return entityId_;
|
||||
}
|
||||
/**
|
||||
* <code>uint32 entity_id = 15;</code>
|
||||
* <code>uint32 entity_id = 9;</code>
|
||||
* @param value The entityId to set.
|
||||
* @return This builder for chaining.
|
||||
*/
|
||||
@@ -648,7 +685,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>uint32 entity_id = 15;</code>
|
||||
* <code>uint32 entity_id = 9;</code>
|
||||
* @return This builder for chaining.
|
||||
*/
|
||||
public Builder clearEntityId() {
|
||||
@@ -662,14 +699,14 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
private com.google.protobuf.SingleFieldBuilderV3<
|
||||
emu.grasscutter.net.proto.VectorOuterClass.Vector, emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder, emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder> positionBuilder_;
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
* @return Whether the position field is set.
|
||||
*/
|
||||
public boolean hasPosition() {
|
||||
return positionBuilder_ != null || position_ != null;
|
||||
}
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
* @return The position.
|
||||
*/
|
||||
public emu.grasscutter.net.proto.VectorOuterClass.Vector getPosition() {
|
||||
@@ -680,7 +717,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
}
|
||||
}
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
*/
|
||||
public Builder setPosition(emu.grasscutter.net.proto.VectorOuterClass.Vector value) {
|
||||
if (positionBuilder_ == null) {
|
||||
@@ -696,7 +733,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
*/
|
||||
public Builder setPosition(
|
||||
emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder builderForValue) {
|
||||
@@ -710,7 +747,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
*/
|
||||
public Builder mergePosition(emu.grasscutter.net.proto.VectorOuterClass.Vector value) {
|
||||
if (positionBuilder_ == null) {
|
||||
@@ -728,7 +765,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
*/
|
||||
public Builder clearPosition() {
|
||||
if (positionBuilder_ == null) {
|
||||
@@ -742,7 +779,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
*/
|
||||
public emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder getPositionBuilder() {
|
||||
|
||||
@@ -750,7 +787,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
return getPositionFieldBuilder().getBuilder();
|
||||
}
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
*/
|
||||
public emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder getPositionOrBuilder() {
|
||||
if (positionBuilder_ != null) {
|
||||
@@ -761,7 +798,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
}
|
||||
}
|
||||
/**
|
||||
* <code>.Vector position = 4;</code>
|
||||
* <code>.Vector position = 15;</code>
|
||||
*/
|
||||
private com.google.protobuf.SingleFieldBuilderV3<
|
||||
emu.grasscutter.net.proto.VectorOuterClass.Vector, emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder, emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder>
|
||||
@@ -776,37 +813,6 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
}
|
||||
return positionBuilder_;
|
||||
}
|
||||
|
||||
private int retcode_ ;
|
||||
/**
|
||||
* <code>int32 retcode = 12;</code>
|
||||
* @return The retcode.
|
||||
*/
|
||||
@java.lang.Override
|
||||
public int getRetcode() {
|
||||
return retcode_;
|
||||
}
|
||||
/**
|
||||
* <code>int32 retcode = 12;</code>
|
||||
* @param value The retcode to set.
|
||||
* @return This builder for chaining.
|
||||
*/
|
||||
public Builder setRetcode(int value) {
|
||||
|
||||
retcode_ = value;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>int32 retcode = 12;</code>
|
||||
* @return This builder for chaining.
|
||||
*/
|
||||
public Builder clearRetcode() {
|
||||
|
||||
retcode_ = 0;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
@java.lang.Override
|
||||
public final Builder setUnknownFields(
|
||||
final com.google.protobuf.UnknownFieldSet unknownFields) {
|
||||
@@ -875,9 +881,9 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
static {
|
||||
java.lang.String[] descriptorData = {
|
||||
"\n\033EvtAvatarLockChairRsp.proto\032\014Vector.pr" +
|
||||
"oto\"h\n\025EvtAvatarLockChairRsp\022\020\n\010chair_id" +
|
||||
"\030\016 \001(\004\022\021\n\tentity_id\030\017 \001(\r\022\031\n\010position\030\004 " +
|
||||
"\001(\0132\007.Vector\022\017\n\007retcode\030\014 \001(\005B\033\n\031emu.gra" +
|
||||
"oto\"h\n\025EvtAvatarLockChairRsp\022\017\n\007retcode\030" +
|
||||
"\010 \001(\005\022\020\n\010chair_id\030\016 \001(\004\022\021\n\tentity_id\030\t \001" +
|
||||
"(\r\022\031\n\010position\030\017 \001(\0132\007.VectorB\033\n\031emu.gra" +
|
||||
"sscutter.net.protob\006proto3"
|
||||
};
|
||||
descriptor = com.google.protobuf.Descriptors.FileDescriptor
|
||||
@@ -890,7 +896,7 @@ public final class EvtAvatarLockChairRspOuterClass {
|
||||
internal_static_EvtAvatarLockChairRsp_fieldAccessorTable = new
|
||||
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
|
||||
internal_static_EvtAvatarLockChairRsp_descriptor,
|
||||
new java.lang.String[] { "ChairId", "EntityId", "Position", "Retcode", });
|
||||
new java.lang.String[] { "Retcode", "ChairId", "EntityId", "Position", });
|
||||
emu.grasscutter.net.proto.VectorOuterClass.getDescriptor();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user