Implement LongArrayTag
This commit is contained in:
parent
4917419bd3
commit
b4b2370e34
3 changed files with 45 additions and 22 deletions
|
@ -11,6 +11,7 @@ import 'package:libac_flutter/nbt/impl/TagShort.dart';
|
|||
import 'Stream.dart';
|
||||
import 'impl/ByteTag.dart';
|
||||
import 'impl/ListTag.dart';
|
||||
import 'impl/LongArrayTag.dart';
|
||||
|
||||
enum TagType {
|
||||
End(0),
|
||||
|
@ -123,6 +124,10 @@ abstract class Tag {
|
|||
{
|
||||
return new IntArrayTag();
|
||||
}
|
||||
case TagType.LongArray:
|
||||
{
|
||||
return new LongArrayTag();
|
||||
}
|
||||
|
||||
case TagType.List:
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue