Update ZNI Library

This commit is contained in:
Tara 2022-12-31 13:11:13 -07:00
parent 0638f7e642
commit eeadcb1959
10 changed files with 753 additions and 388 deletions

View file

@ -224,6 +224,32 @@ namespace LibZNI.Serialization.ZNIFile
}
}
}
public ulong uLongValue
{
get
{
switch (Type)
{
case TagType.ULONG:
return (this as uLongTag).Value;
default:
throw new Exception("Invalid type");
}
}
}
public Guid UUIDValue
{
get
{
switch (Type)
{
case TagType.UUID:
return (this as UUIDTag).Value;
default:
throw new Exception("Invalid type");
}
}
}
public abstract void Rename(string old, string newName);