mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-06-05 02:33:34 +08:00
1187 lines
40 KiB
Java
1187 lines
40 KiB
Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
// source: EntityJumpNotify.proto
|
|
|
|
package emu.grasscutter.net.proto;
|
|
|
|
public final class EntityJumpNotifyOuterClass {
|
|
private EntityJumpNotifyOuterClass() {}
|
|
public static void registerAllExtensions(
|
|
com.google.protobuf.ExtensionRegistryLite registry) {
|
|
}
|
|
|
|
public static void registerAllExtensions(
|
|
com.google.protobuf.ExtensionRegistry registry) {
|
|
registerAllExtensions(
|
|
(com.google.protobuf.ExtensionRegistryLite) registry);
|
|
}
|
|
public interface EntityJumpNotifyOrBuilder extends
|
|
// @@protoc_insertion_point(interface_extends:EntityJumpNotify)
|
|
com.google.protobuf.MessageOrBuilder {
|
|
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
* @return Whether the rot field is set.
|
|
*/
|
|
boolean hasRot();
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
* @return The rot.
|
|
*/
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector getRot();
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
*/
|
|
emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder getRotOrBuilder();
|
|
|
|
/**
|
|
* <code>.EntityJumpNotify.Type jump_type = 1;</code>
|
|
* @return The enum numeric value on the wire for jumpType.
|
|
*/
|
|
int getJumpTypeValue();
|
|
/**
|
|
* <code>.EntityJumpNotify.Type jump_type = 1;</code>
|
|
* @return The jumpType.
|
|
*/
|
|
emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type getJumpType();
|
|
|
|
/**
|
|
* <code>uint32 entity_id = 10;</code>
|
|
* @return The entityId.
|
|
*/
|
|
int getEntityId();
|
|
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
* @return Whether the pos field is set.
|
|
*/
|
|
boolean hasPos();
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
* @return The pos.
|
|
*/
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector getPos();
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
*/
|
|
emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder getPosOrBuilder();
|
|
}
|
|
/**
|
|
* <pre>
|
|
* CmdId: 8767
|
|
* Obf: KLMLLNEFCEG
|
|
* </pre>
|
|
*
|
|
* Protobuf type {@code EntityJumpNotify}
|
|
*/
|
|
public static final class EntityJumpNotify extends
|
|
com.google.protobuf.GeneratedMessageV3 implements
|
|
// @@protoc_insertion_point(message_implements:EntityJumpNotify)
|
|
EntityJumpNotifyOrBuilder {
|
|
private static final long serialVersionUID = 0L;
|
|
// Use EntityJumpNotify.newBuilder() to construct.
|
|
private EntityJumpNotify(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {
|
|
super(builder);
|
|
}
|
|
private EntityJumpNotify() {
|
|
jumpType_ = 0;
|
|
}
|
|
|
|
@java.lang.Override
|
|
@SuppressWarnings({"unused"})
|
|
protected java.lang.Object newInstance(
|
|
UnusedPrivateParameter unused) {
|
|
return new EntityJumpNotify();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public final com.google.protobuf.UnknownFieldSet
|
|
getUnknownFields() {
|
|
return this.unknownFields;
|
|
}
|
|
private EntityJumpNotify(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
this();
|
|
if (extensionRegistry == null) {
|
|
throw new java.lang.NullPointerException();
|
|
}
|
|
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
|
|
com.google.protobuf.UnknownFieldSet.newBuilder();
|
|
try {
|
|
boolean done = false;
|
|
while (!done) {
|
|
int tag = input.readTag();
|
|
switch (tag) {
|
|
case 0:
|
|
done = true;
|
|
break;
|
|
case 8: {
|
|
int rawValue = input.readEnum();
|
|
|
|
jumpType_ = rawValue;
|
|
break;
|
|
}
|
|
case 18: {
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder subBuilder = null;
|
|
if (pos_ != null) {
|
|
subBuilder = pos_.toBuilder();
|
|
}
|
|
pos_ = input.readMessage(emu.grasscutter.net.proto.VectorOuterClass.Vector.parser(), extensionRegistry);
|
|
if (subBuilder != null) {
|
|
subBuilder.mergeFrom(pos_);
|
|
pos_ = subBuilder.buildPartial();
|
|
}
|
|
|
|
break;
|
|
}
|
|
case 80: {
|
|
|
|
entityId_ = input.readUInt32();
|
|
break;
|
|
}
|
|
case 114: {
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder subBuilder = null;
|
|
if (rot_ != null) {
|
|
subBuilder = rot_.toBuilder();
|
|
}
|
|
rot_ = input.readMessage(emu.grasscutter.net.proto.VectorOuterClass.Vector.parser(), extensionRegistry);
|
|
if (subBuilder != null) {
|
|
subBuilder.mergeFrom(rot_);
|
|
rot_ = subBuilder.buildPartial();
|
|
}
|
|
|
|
break;
|
|
}
|
|
default: {
|
|
if (!parseUnknownField(
|
|
input, unknownFields, extensionRegistry, tag)) {
|
|
done = true;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
throw e.setUnfinishedMessage(this);
|
|
} catch (java.io.IOException e) {
|
|
throw new com.google.protobuf.InvalidProtocolBufferException(
|
|
e).setUnfinishedMessage(this);
|
|
} finally {
|
|
this.unknownFields = unknownFields.build();
|
|
makeExtensionsImmutable();
|
|
}
|
|
}
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.internal_static_EntityJumpNotify_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.internal_static_EntityJumpNotify_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.class, emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Builder.class);
|
|
}
|
|
|
|
/**
|
|
* <pre>
|
|
* Obf: ONNNDBFLCGB
|
|
* </pre>
|
|
*
|
|
* Protobuf enum {@code EntityJumpNotify.Type}
|
|
*/
|
|
public enum Type
|
|
implements com.google.protobuf.ProtocolMessageEnum {
|
|
/**
|
|
* <code>NULL = 0;</code>
|
|
*/
|
|
NULL(0),
|
|
/**
|
|
* <code>ACTIVE = 1;</code>
|
|
*/
|
|
ACTIVE(1),
|
|
/**
|
|
* <code>PASSIVE = 2;</code>
|
|
*/
|
|
PASSIVE(2),
|
|
UNRECOGNIZED(-1),
|
|
;
|
|
|
|
/**
|
|
* <code>NULL = 0;</code>
|
|
*/
|
|
public static final int NULL_VALUE = 0;
|
|
/**
|
|
* <code>ACTIVE = 1;</code>
|
|
*/
|
|
public static final int ACTIVE_VALUE = 1;
|
|
/**
|
|
* <code>PASSIVE = 2;</code>
|
|
*/
|
|
public static final int PASSIVE_VALUE = 2;
|
|
|
|
|
|
public final int getNumber() {
|
|
if (this == UNRECOGNIZED) {
|
|
throw new java.lang.IllegalArgumentException(
|
|
"Can't get the number of an unknown enum value.");
|
|
}
|
|
return value;
|
|
}
|
|
|
|
/**
|
|
* @param value The numeric wire value of the corresponding enum entry.
|
|
* @return The enum associated with the given numeric wire value.
|
|
* @deprecated Use {@link #forNumber(int)} instead.
|
|
*/
|
|
@java.lang.Deprecated
|
|
public static Type valueOf(int value) {
|
|
return forNumber(value);
|
|
}
|
|
|
|
/**
|
|
* @param value The numeric wire value of the corresponding enum entry.
|
|
* @return The enum associated with the given numeric wire value.
|
|
*/
|
|
public static Type forNumber(int value) {
|
|
switch (value) {
|
|
case 0: return NULL;
|
|
case 1: return ACTIVE;
|
|
case 2: return PASSIVE;
|
|
default: return null;
|
|
}
|
|
}
|
|
|
|
public static com.google.protobuf.Internal.EnumLiteMap<Type>
|
|
internalGetValueMap() {
|
|
return internalValueMap;
|
|
}
|
|
private static final com.google.protobuf.Internal.EnumLiteMap<
|
|
Type> internalValueMap =
|
|
new com.google.protobuf.Internal.EnumLiteMap<Type>() {
|
|
public Type findValueByNumber(int number) {
|
|
return Type.forNumber(number);
|
|
}
|
|
};
|
|
|
|
public final com.google.protobuf.Descriptors.EnumValueDescriptor
|
|
getValueDescriptor() {
|
|
if (this == UNRECOGNIZED) {
|
|
throw new java.lang.IllegalStateException(
|
|
"Can't get the descriptor of an unrecognized enum value.");
|
|
}
|
|
return getDescriptor().getValues().get(ordinal());
|
|
}
|
|
public final com.google.protobuf.Descriptors.EnumDescriptor
|
|
getDescriptorForType() {
|
|
return getDescriptor();
|
|
}
|
|
public static final com.google.protobuf.Descriptors.EnumDescriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.getDescriptor().getEnumTypes().get(0);
|
|
}
|
|
|
|
private static final Type[] VALUES = values();
|
|
|
|
public static Type valueOf(
|
|
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
|
|
if (desc.getType() != getDescriptor()) {
|
|
throw new java.lang.IllegalArgumentException(
|
|
"EnumValueDescriptor is not for this type.");
|
|
}
|
|
if (desc.getIndex() == -1) {
|
|
return UNRECOGNIZED;
|
|
}
|
|
return VALUES[desc.getIndex()];
|
|
}
|
|
|
|
private final int value;
|
|
|
|
private Type(int value) {
|
|
this.value = value;
|
|
}
|
|
|
|
// @@protoc_insertion_point(enum_scope:EntityJumpNotify.Type)
|
|
}
|
|
|
|
public static final int ROT_FIELD_NUMBER = 14;
|
|
private emu.grasscutter.net.proto.VectorOuterClass.Vector rot_;
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
* @return Whether the rot field is set.
|
|
*/
|
|
@java.lang.Override
|
|
public boolean hasRot() {
|
|
return rot_ != null;
|
|
}
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
* @return The rot.
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.VectorOuterClass.Vector getRot() {
|
|
return rot_ == null ? emu.grasscutter.net.proto.VectorOuterClass.Vector.getDefaultInstance() : rot_;
|
|
}
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder getRotOrBuilder() {
|
|
return getRot();
|
|
}
|
|
|
|
public static final int JUMP_TYPE_FIELD_NUMBER = 1;
|
|
private int jumpType_;
|
|
/**
|
|
* <code>.EntityJumpNotify.Type jump_type = 1;</code>
|
|
* @return The enum numeric value on the wire for jumpType.
|
|
*/
|
|
@java.lang.Override public int getJumpTypeValue() {
|
|
return jumpType_;
|
|
}
|
|
/**
|
|
* <code>.EntityJumpNotify.Type jump_type = 1;</code>
|
|
* @return The jumpType.
|
|
*/
|
|
@java.lang.Override public emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type getJumpType() {
|
|
@SuppressWarnings("deprecation")
|
|
emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type result = emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type.valueOf(jumpType_);
|
|
return result == null ? emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type.UNRECOGNIZED : result;
|
|
}
|
|
|
|
public static final int ENTITY_ID_FIELD_NUMBER = 10;
|
|
private int entityId_;
|
|
/**
|
|
* <code>uint32 entity_id = 10;</code>
|
|
* @return The entityId.
|
|
*/
|
|
@java.lang.Override
|
|
public int getEntityId() {
|
|
return entityId_;
|
|
}
|
|
|
|
public static final int POS_FIELD_NUMBER = 2;
|
|
private emu.grasscutter.net.proto.VectorOuterClass.Vector pos_;
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
* @return Whether the pos field is set.
|
|
*/
|
|
@java.lang.Override
|
|
public boolean hasPos() {
|
|
return pos_ != null;
|
|
}
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
* @return The pos.
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.VectorOuterClass.Vector getPos() {
|
|
return pos_ == null ? emu.grasscutter.net.proto.VectorOuterClass.Vector.getDefaultInstance() : pos_;
|
|
}
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder getPosOrBuilder() {
|
|
return getPos();
|
|
}
|
|
|
|
private byte memoizedIsInitialized = -1;
|
|
@java.lang.Override
|
|
public final boolean isInitialized() {
|
|
byte isInitialized = memoizedIsInitialized;
|
|
if (isInitialized == 1) return true;
|
|
if (isInitialized == 0) return false;
|
|
|
|
memoizedIsInitialized = 1;
|
|
return true;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public void writeTo(com.google.protobuf.CodedOutputStream output)
|
|
throws java.io.IOException {
|
|
if (jumpType_ != emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type.NULL.getNumber()) {
|
|
output.writeEnum(1, jumpType_);
|
|
}
|
|
if (pos_ != null) {
|
|
output.writeMessage(2, getPos());
|
|
}
|
|
if (entityId_ != 0) {
|
|
output.writeUInt32(10, entityId_);
|
|
}
|
|
if (rot_ != null) {
|
|
output.writeMessage(14, getRot());
|
|
}
|
|
unknownFields.writeTo(output);
|
|
}
|
|
|
|
@java.lang.Override
|
|
public int getSerializedSize() {
|
|
int size = memoizedSize;
|
|
if (size != -1) return size;
|
|
|
|
size = 0;
|
|
if (jumpType_ != emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type.NULL.getNumber()) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeEnumSize(1, jumpType_);
|
|
}
|
|
if (pos_ != null) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeMessageSize(2, getPos());
|
|
}
|
|
if (entityId_ != 0) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeUInt32Size(10, entityId_);
|
|
}
|
|
if (rot_ != null) {
|
|
size += com.google.protobuf.CodedOutputStream
|
|
.computeMessageSize(14, getRot());
|
|
}
|
|
size += unknownFields.getSerializedSize();
|
|
memoizedSize = size;
|
|
return size;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public boolean equals(final java.lang.Object obj) {
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify)) {
|
|
return super.equals(obj);
|
|
}
|
|
emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify other = (emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify) obj;
|
|
|
|
if (hasRot() != other.hasRot()) return false;
|
|
if (hasRot()) {
|
|
if (!getRot()
|
|
.equals(other.getRot())) return false;
|
|
}
|
|
if (jumpType_ != other.jumpType_) return false;
|
|
if (getEntityId()
|
|
!= other.getEntityId()) return false;
|
|
if (hasPos() != other.hasPos()) return false;
|
|
if (hasPos()) {
|
|
if (!getPos()
|
|
.equals(other.getPos())) return false;
|
|
}
|
|
if (!unknownFields.equals(other.unknownFields)) return false;
|
|
return true;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public int hashCode() {
|
|
if (memoizedHashCode != 0) {
|
|
return memoizedHashCode;
|
|
}
|
|
int hash = 41;
|
|
hash = (19 * hash) + getDescriptor().hashCode();
|
|
if (hasRot()) {
|
|
hash = (37 * hash) + ROT_FIELD_NUMBER;
|
|
hash = (53 * hash) + getRot().hashCode();
|
|
}
|
|
hash = (37 * hash) + JUMP_TYPE_FIELD_NUMBER;
|
|
hash = (53 * hash) + jumpType_;
|
|
hash = (37 * hash) + ENTITY_ID_FIELD_NUMBER;
|
|
hash = (53 * hash) + getEntityId();
|
|
if (hasPos()) {
|
|
hash = (37 * hash) + POS_FIELD_NUMBER;
|
|
hash = (53 * hash) + getPos().hashCode();
|
|
}
|
|
hash = (29 * hash) + unknownFields.hashCode();
|
|
memoizedHashCode = hash;
|
|
return hash;
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseFrom(
|
|
java.nio.ByteBuffer data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseFrom(
|
|
java.nio.ByteBuffer data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseFrom(
|
|
com.google.protobuf.ByteString data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseFrom(
|
|
com.google.protobuf.ByteString data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseFrom(byte[] data)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data);
|
|
}
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseFrom(
|
|
byte[] data,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return PARSER.parseFrom(data, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseDelimitedFrom(java.io.InputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseDelimitedWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseDelimitedFrom(
|
|
java.io.InputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
|
|
}
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseFrom(
|
|
com.google.protobuf.CodedInputStream input)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input);
|
|
}
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parseFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
return com.google.protobuf.GeneratedMessageV3
|
|
.parseWithIOException(PARSER, input, extensionRegistry);
|
|
}
|
|
|
|
@java.lang.Override
|
|
public Builder newBuilderForType() { return newBuilder(); }
|
|
public static Builder newBuilder() {
|
|
return DEFAULT_INSTANCE.toBuilder();
|
|
}
|
|
public static Builder newBuilder(emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify prototype) {
|
|
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
|
|
}
|
|
@java.lang.Override
|
|
public Builder toBuilder() {
|
|
return this == DEFAULT_INSTANCE
|
|
? new Builder() : new Builder().mergeFrom(this);
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected Builder newBuilderForType(
|
|
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
|
|
Builder builder = new Builder(parent);
|
|
return builder;
|
|
}
|
|
/**
|
|
* <pre>
|
|
* CmdId: 8767
|
|
* Obf: KLMLLNEFCEG
|
|
* </pre>
|
|
*
|
|
* Protobuf type {@code EntityJumpNotify}
|
|
*/
|
|
public static final class Builder extends
|
|
com.google.protobuf.GeneratedMessageV3.Builder<Builder> implements
|
|
// @@protoc_insertion_point(builder_implements:EntityJumpNotify)
|
|
emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotifyOrBuilder {
|
|
public static final com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptor() {
|
|
return emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.internal_static_EntityJumpNotify_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internalGetFieldAccessorTable() {
|
|
return emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.internal_static_EntityJumpNotify_fieldAccessorTable
|
|
.ensureFieldAccessorsInitialized(
|
|
emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.class, emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Builder.class);
|
|
}
|
|
|
|
// Construct using emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.newBuilder()
|
|
private Builder() {
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
|
|
private Builder(
|
|
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
|
|
super(parent);
|
|
maybeForceBuilderInitialization();
|
|
}
|
|
private void maybeForceBuilderInitialization() {
|
|
if (com.google.protobuf.GeneratedMessageV3
|
|
.alwaysUseFieldBuilders) {
|
|
}
|
|
}
|
|
@java.lang.Override
|
|
public Builder clear() {
|
|
super.clear();
|
|
if (rotBuilder_ == null) {
|
|
rot_ = null;
|
|
} else {
|
|
rot_ = null;
|
|
rotBuilder_ = null;
|
|
}
|
|
jumpType_ = 0;
|
|
|
|
entityId_ = 0;
|
|
|
|
if (posBuilder_ == null) {
|
|
pos_ = null;
|
|
} else {
|
|
pos_ = null;
|
|
posBuilder_ = null;
|
|
}
|
|
return this;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Descriptors.Descriptor
|
|
getDescriptorForType() {
|
|
return emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.internal_static_EntityJumpNotify_descriptor;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify getDefaultInstanceForType() {
|
|
return emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.getDefaultInstance();
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify build() {
|
|
emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify result = buildPartial();
|
|
if (!result.isInitialized()) {
|
|
throw newUninitializedMessageException(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify buildPartial() {
|
|
emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify result = new emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify(this);
|
|
if (rotBuilder_ == null) {
|
|
result.rot_ = rot_;
|
|
} else {
|
|
result.rot_ = rotBuilder_.build();
|
|
}
|
|
result.jumpType_ = jumpType_;
|
|
result.entityId_ = entityId_;
|
|
if (posBuilder_ == null) {
|
|
result.pos_ = pos_;
|
|
} else {
|
|
result.pos_ = posBuilder_.build();
|
|
}
|
|
onBuilt();
|
|
return result;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public Builder clone() {
|
|
return super.clone();
|
|
}
|
|
@java.lang.Override
|
|
public Builder setField(
|
|
com.google.protobuf.Descriptors.FieldDescriptor field,
|
|
java.lang.Object value) {
|
|
return super.setField(field, value);
|
|
}
|
|
@java.lang.Override
|
|
public Builder clearField(
|
|
com.google.protobuf.Descriptors.FieldDescriptor field) {
|
|
return super.clearField(field);
|
|
}
|
|
@java.lang.Override
|
|
public Builder clearOneof(
|
|
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
|
|
return super.clearOneof(oneof);
|
|
}
|
|
@java.lang.Override
|
|
public Builder setRepeatedField(
|
|
com.google.protobuf.Descriptors.FieldDescriptor field,
|
|
int index, java.lang.Object value) {
|
|
return super.setRepeatedField(field, index, value);
|
|
}
|
|
@java.lang.Override
|
|
public Builder addRepeatedField(
|
|
com.google.protobuf.Descriptors.FieldDescriptor field,
|
|
java.lang.Object value) {
|
|
return super.addRepeatedField(field, value);
|
|
}
|
|
@java.lang.Override
|
|
public Builder mergeFrom(com.google.protobuf.Message other) {
|
|
if (other instanceof emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify) {
|
|
return mergeFrom((emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify)other);
|
|
} else {
|
|
super.mergeFrom(other);
|
|
return this;
|
|
}
|
|
}
|
|
|
|
public Builder mergeFrom(emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify other) {
|
|
if (other == emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.getDefaultInstance()) return this;
|
|
if (other.hasRot()) {
|
|
mergeRot(other.getRot());
|
|
}
|
|
if (other.jumpType_ != 0) {
|
|
setJumpTypeValue(other.getJumpTypeValue());
|
|
}
|
|
if (other.getEntityId() != 0) {
|
|
setEntityId(other.getEntityId());
|
|
}
|
|
if (other.hasPos()) {
|
|
mergePos(other.getPos());
|
|
}
|
|
this.mergeUnknownFields(other.unknownFields);
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public final boolean isInitialized() {
|
|
return true;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public Builder mergeFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws java.io.IOException {
|
|
emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify parsedMessage = null;
|
|
try {
|
|
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
|
|
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
|
parsedMessage = (emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify) e.getUnfinishedMessage();
|
|
throw e.unwrapIOException();
|
|
} finally {
|
|
if (parsedMessage != null) {
|
|
mergeFrom(parsedMessage);
|
|
}
|
|
}
|
|
return this;
|
|
}
|
|
|
|
private emu.grasscutter.net.proto.VectorOuterClass.Vector rot_;
|
|
private com.google.protobuf.SingleFieldBuilderV3<
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector, emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder, emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder> rotBuilder_;
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
* @return Whether the rot field is set.
|
|
*/
|
|
public boolean hasRot() {
|
|
return rotBuilder_ != null || rot_ != null;
|
|
}
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
* @return The rot.
|
|
*/
|
|
public emu.grasscutter.net.proto.VectorOuterClass.Vector getRot() {
|
|
if (rotBuilder_ == null) {
|
|
return rot_ == null ? emu.grasscutter.net.proto.VectorOuterClass.Vector.getDefaultInstance() : rot_;
|
|
} else {
|
|
return rotBuilder_.getMessage();
|
|
}
|
|
}
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
*/
|
|
public Builder setRot(emu.grasscutter.net.proto.VectorOuterClass.Vector value) {
|
|
if (rotBuilder_ == null) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
rot_ = value;
|
|
onChanged();
|
|
} else {
|
|
rotBuilder_.setMessage(value);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
*/
|
|
public Builder setRot(
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder builderForValue) {
|
|
if (rotBuilder_ == null) {
|
|
rot_ = builderForValue.build();
|
|
onChanged();
|
|
} else {
|
|
rotBuilder_.setMessage(builderForValue.build());
|
|
}
|
|
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
*/
|
|
public Builder mergeRot(emu.grasscutter.net.proto.VectorOuterClass.Vector value) {
|
|
if (rotBuilder_ == null) {
|
|
if (rot_ != null) {
|
|
rot_ =
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector.newBuilder(rot_).mergeFrom(value).buildPartial();
|
|
} else {
|
|
rot_ = value;
|
|
}
|
|
onChanged();
|
|
} else {
|
|
rotBuilder_.mergeFrom(value);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
*/
|
|
public Builder clearRot() {
|
|
if (rotBuilder_ == null) {
|
|
rot_ = null;
|
|
onChanged();
|
|
} else {
|
|
rot_ = null;
|
|
rotBuilder_ = null;
|
|
}
|
|
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
*/
|
|
public emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder getRotBuilder() {
|
|
|
|
onChanged();
|
|
return getRotFieldBuilder().getBuilder();
|
|
}
|
|
/**
|
|
* <code>.Vector rot = 14;</code>
|
|
*/
|
|
public emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder getRotOrBuilder() {
|
|
if (rotBuilder_ != null) {
|
|
return rotBuilder_.getMessageOrBuilder();
|
|
} else {
|
|
return rot_ == null ?
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector.getDefaultInstance() : rot_;
|
|
}
|
|
}
|
|
/**
|
|
* <code>.Vector rot = 14;</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>
|
|
getRotFieldBuilder() {
|
|
if (rotBuilder_ == null) {
|
|
rotBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector, emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder, emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder>(
|
|
getRot(),
|
|
getParentForChildren(),
|
|
isClean());
|
|
rot_ = null;
|
|
}
|
|
return rotBuilder_;
|
|
}
|
|
|
|
private int jumpType_ = 0;
|
|
/**
|
|
* <code>.EntityJumpNotify.Type jump_type = 1;</code>
|
|
* @return The enum numeric value on the wire for jumpType.
|
|
*/
|
|
@java.lang.Override public int getJumpTypeValue() {
|
|
return jumpType_;
|
|
}
|
|
/**
|
|
* <code>.EntityJumpNotify.Type jump_type = 1;</code>
|
|
* @param value The enum numeric value on the wire for jumpType to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setJumpTypeValue(int value) {
|
|
|
|
jumpType_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.EntityJumpNotify.Type jump_type = 1;</code>
|
|
* @return The jumpType.
|
|
*/
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type getJumpType() {
|
|
@SuppressWarnings("deprecation")
|
|
emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type result = emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type.valueOf(jumpType_);
|
|
return result == null ? emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type.UNRECOGNIZED : result;
|
|
}
|
|
/**
|
|
* <code>.EntityJumpNotify.Type jump_type = 1;</code>
|
|
* @param value The jumpType to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setJumpType(emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify.Type value) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
|
|
jumpType_ = value.getNumber();
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.EntityJumpNotify.Type jump_type = 1;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearJumpType() {
|
|
|
|
jumpType_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private int entityId_ ;
|
|
/**
|
|
* <code>uint32 entity_id = 10;</code>
|
|
* @return The entityId.
|
|
*/
|
|
@java.lang.Override
|
|
public int getEntityId() {
|
|
return entityId_;
|
|
}
|
|
/**
|
|
* <code>uint32 entity_id = 10;</code>
|
|
* @param value The entityId to set.
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder setEntityId(int value) {
|
|
|
|
entityId_ = value;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>uint32 entity_id = 10;</code>
|
|
* @return This builder for chaining.
|
|
*/
|
|
public Builder clearEntityId() {
|
|
|
|
entityId_ = 0;
|
|
onChanged();
|
|
return this;
|
|
}
|
|
|
|
private emu.grasscutter.net.proto.VectorOuterClass.Vector pos_;
|
|
private com.google.protobuf.SingleFieldBuilderV3<
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector, emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder, emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder> posBuilder_;
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
* @return Whether the pos field is set.
|
|
*/
|
|
public boolean hasPos() {
|
|
return posBuilder_ != null || pos_ != null;
|
|
}
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
* @return The pos.
|
|
*/
|
|
public emu.grasscutter.net.proto.VectorOuterClass.Vector getPos() {
|
|
if (posBuilder_ == null) {
|
|
return pos_ == null ? emu.grasscutter.net.proto.VectorOuterClass.Vector.getDefaultInstance() : pos_;
|
|
} else {
|
|
return posBuilder_.getMessage();
|
|
}
|
|
}
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
*/
|
|
public Builder setPos(emu.grasscutter.net.proto.VectorOuterClass.Vector value) {
|
|
if (posBuilder_ == null) {
|
|
if (value == null) {
|
|
throw new NullPointerException();
|
|
}
|
|
pos_ = value;
|
|
onChanged();
|
|
} else {
|
|
posBuilder_.setMessage(value);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
*/
|
|
public Builder setPos(
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder builderForValue) {
|
|
if (posBuilder_ == null) {
|
|
pos_ = builderForValue.build();
|
|
onChanged();
|
|
} else {
|
|
posBuilder_.setMessage(builderForValue.build());
|
|
}
|
|
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
*/
|
|
public Builder mergePos(emu.grasscutter.net.proto.VectorOuterClass.Vector value) {
|
|
if (posBuilder_ == null) {
|
|
if (pos_ != null) {
|
|
pos_ =
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector.newBuilder(pos_).mergeFrom(value).buildPartial();
|
|
} else {
|
|
pos_ = value;
|
|
}
|
|
onChanged();
|
|
} else {
|
|
posBuilder_.mergeFrom(value);
|
|
}
|
|
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
*/
|
|
public Builder clearPos() {
|
|
if (posBuilder_ == null) {
|
|
pos_ = null;
|
|
onChanged();
|
|
} else {
|
|
pos_ = null;
|
|
posBuilder_ = null;
|
|
}
|
|
|
|
return this;
|
|
}
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
*/
|
|
public emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder getPosBuilder() {
|
|
|
|
onChanged();
|
|
return getPosFieldBuilder().getBuilder();
|
|
}
|
|
/**
|
|
* <code>.Vector pos = 2;</code>
|
|
*/
|
|
public emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder getPosOrBuilder() {
|
|
if (posBuilder_ != null) {
|
|
return posBuilder_.getMessageOrBuilder();
|
|
} else {
|
|
return pos_ == null ?
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector.getDefaultInstance() : pos_;
|
|
}
|
|
}
|
|
/**
|
|
* <code>.Vector pos = 2;</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>
|
|
getPosFieldBuilder() {
|
|
if (posBuilder_ == null) {
|
|
posBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
|
|
emu.grasscutter.net.proto.VectorOuterClass.Vector, emu.grasscutter.net.proto.VectorOuterClass.Vector.Builder, emu.grasscutter.net.proto.VectorOuterClass.VectorOrBuilder>(
|
|
getPos(),
|
|
getParentForChildren(),
|
|
isClean());
|
|
pos_ = null;
|
|
}
|
|
return posBuilder_;
|
|
}
|
|
@java.lang.Override
|
|
public final Builder setUnknownFields(
|
|
final com.google.protobuf.UnknownFieldSet unknownFields) {
|
|
return super.setUnknownFields(unknownFields);
|
|
}
|
|
|
|
@java.lang.Override
|
|
public final Builder mergeUnknownFields(
|
|
final com.google.protobuf.UnknownFieldSet unknownFields) {
|
|
return super.mergeUnknownFields(unknownFields);
|
|
}
|
|
|
|
|
|
// @@protoc_insertion_point(builder_scope:EntityJumpNotify)
|
|
}
|
|
|
|
// @@protoc_insertion_point(class_scope:EntityJumpNotify)
|
|
private static final emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify DEFAULT_INSTANCE;
|
|
static {
|
|
DEFAULT_INSTANCE = new emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify();
|
|
}
|
|
|
|
public static emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify getDefaultInstance() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
private static final com.google.protobuf.Parser<EntityJumpNotify>
|
|
PARSER = new com.google.protobuf.AbstractParser<EntityJumpNotify>() {
|
|
@java.lang.Override
|
|
public EntityJumpNotify parsePartialFrom(
|
|
com.google.protobuf.CodedInputStream input,
|
|
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
|
|
throws com.google.protobuf.InvalidProtocolBufferException {
|
|
return new EntityJumpNotify(input, extensionRegistry);
|
|
}
|
|
};
|
|
|
|
public static com.google.protobuf.Parser<EntityJumpNotify> parser() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public com.google.protobuf.Parser<EntityJumpNotify> getParserForType() {
|
|
return PARSER;
|
|
}
|
|
|
|
@java.lang.Override
|
|
public emu.grasscutter.net.proto.EntityJumpNotifyOuterClass.EntityJumpNotify getDefaultInstanceForType() {
|
|
return DEFAULT_INSTANCE;
|
|
}
|
|
|
|
}
|
|
|
|
private static final com.google.protobuf.Descriptors.Descriptor
|
|
internal_static_EntityJumpNotify_descriptor;
|
|
private static final
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
|
|
internal_static_EntityJumpNotify_fieldAccessorTable;
|
|
|
|
public static com.google.protobuf.Descriptors.FileDescriptor
|
|
getDescriptor() {
|
|
return descriptor;
|
|
}
|
|
private static com.google.protobuf.Descriptors.FileDescriptor
|
|
descriptor;
|
|
static {
|
|
java.lang.String[] descriptorData = {
|
|
"\n\026EntityJumpNotify.proto\032\014Vector.proto\"\247" +
|
|
"\001\n\020EntityJumpNotify\022\024\n\003rot\030\016 \001(\0132\007.Vecto" +
|
|
"r\022)\n\tjump_type\030\001 \001(\0162\026.EntityJumpNotify." +
|
|
"Type\022\021\n\tentity_id\030\n \001(\r\022\024\n\003pos\030\002 \001(\0132\007.V" +
|
|
"ector\")\n\004Type\022\010\n\004NULL\020\000\022\n\n\006ACTIVE\020\001\022\013\n\007P" +
|
|
"ASSIVE\020\002B\033\n\031emu.grasscutter.net.protob\006p" +
|
|
"roto3"
|
|
};
|
|
descriptor = com.google.protobuf.Descriptors.FileDescriptor
|
|
.internalBuildGeneratedFileFrom(descriptorData,
|
|
new com.google.protobuf.Descriptors.FileDescriptor[] {
|
|
emu.grasscutter.net.proto.VectorOuterClass.getDescriptor(),
|
|
});
|
|
internal_static_EntityJumpNotify_descriptor =
|
|
getDescriptor().getMessageTypes().get(0);
|
|
internal_static_EntityJumpNotify_fieldAccessorTable = new
|
|
com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
|
|
internal_static_EntityJumpNotify_descriptor,
|
|
new java.lang.String[] { "Rot", "JumpType", "EntityId", "Pos", });
|
|
emu.grasscutter.net.proto.VectorOuterClass.getDescriptor();
|
|
}
|
|
|
|
// @@protoc_insertion_point(outer_class_scope)
|
|
}
|