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