Push more utilities and UUID stuff

This commit is contained in:
zontreck 2024-05-06 20:49:48 -07:00
parent dd6ee1bf60
commit 9b7b84153f
7 changed files with 325 additions and 0 deletions

View file

@ -9,6 +9,10 @@ class IntArrayTag extends Tag {
this.value.addAll(value);
}
static IntArrayTag valueOf(List<int> value) {
return IntArrayTag._(value);
}
@override
void readValue(ByteLayer data) {
int count = data.readInt();