NbtLongArray constructor
Create a NbtLongArray with given parent.
Implementation
NbtLongArray({required String name, required List<int> children})
: super(name, NbtTagType.TAG_LONG_ARRAY) {
this.children = children;
}
Create a NbtLongArray with given parent.
NbtLongArray({required String name, required List<int> children})
: super(name, NbtTagType.TAG_LONG_ARRAY) {
this.children = children;
}