Implement DoubleTag

This commit is contained in:
zontreck 2024-05-04 21:28:10 -07:00
parent 70f6e16d17
commit 0bf1e2b2d9
2 changed files with 19 additions and 5 deletions

View file

@ -1,5 +1,6 @@
import 'package:libac_flutter/nbt/impl/ByteArrayTag.dart';
import 'package:libac_flutter/nbt/impl/CompoundTag.dart';
import 'package:libac_flutter/nbt/impl/DoubleTag.dart';
import 'package:libac_flutter/nbt/impl/TagEnd.dart';
import 'package:libac_flutter/nbt/impl/TagFloat.dart';
import 'package:libac_flutter/nbt/impl/TagInt.dart';
@ -88,6 +89,10 @@ abstract class Tag {
{
return new CompoundTag();
}
case TagType.Double:
{
return new DoubleTag();
}
case TagType.End:
return new TagEnd();
case TagType.Short: