mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
22 lines
458 B
Java
22 lines
458 B
Java
package androidx.emoji2.text.flatbuffer;
|
|
|
|
import java.nio.ByteBuffer;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class Struct {
|
|
protected ByteBuffer bb;
|
|
protected int bb_pos;
|
|
|
|
protected void __reset(int i, ByteBuffer byteBuffer) {
|
|
this.bb = byteBuffer;
|
|
if (byteBuffer != null) {
|
|
this.bb_pos = i;
|
|
} else {
|
|
this.bb_pos = 0;
|
|
}
|
|
}
|
|
|
|
public void __reset() {
|
|
__reset(0, null);
|
|
}
|
|
}
|