MCPcopy Create free account
hub / github.com/cabaletta/baritone / VarInt

Method VarInt

src/main/java/baritone/utils/type/VarInt.java:33–37  ·  view source on GitHub ↗
(int value)

Source from the content-addressed store, hash-verified

31 private final int size;
32
33 public VarInt(int value) {
34 this.value = value;
35 this.serialized = serialize0(this.value);
36 this.size = this.serialized.length;
37 }
38
39 /**
40 * @return The integer value that is represented by this {@link VarInt}.

Callers

nothing calls this directly

Calls 1

serialize0Method · 0.95

Tested by

no test coverage detected