Finished basic implementation

This commit is contained in:
zontreck 2024-05-04 20:19:26 -07:00
parent 7432530c79
commit f9c83a676b
14 changed files with 125 additions and 42 deletions

View file

@ -20,16 +20,11 @@ enum TagType {
}
abstract class Tag {
late TagType type;
int getType() {
return type.byte;
}
TagType getTagType() {
return type;
return getTagType().byte;
}
TagType getTagType();
void writeValue(ByteLayer data);
void readValue(ByteLayer data);
}