Finished basic implementation
This commit is contained in:
parent
7432530c79
commit
f9c83a676b
14 changed files with 125 additions and 42 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue