Update to 1.1.0 #5

Merged
Booklordofthedings merged 16 commits from dev into main 2024-09-26 17:32:20 +02:00
Showing only changes of commit dbc38e0195 - Show all commits

View file

@ -14,6 +14,16 @@ class Bofa
public StringView Typename;
public BofaValue Value;
public static bool Deserialize<T>(ref T pType, Dictionary<StringView, Bofa> pDictionary) where T : Bofa.Serialization.IBofaParseable
{
Bofa b = scope .();
b.Type = .Object;
b.Value.Object = pDictionary;
defer {b.Type = .Integer;}
return pType.Deserialize(b);
}
public override void ToString(String strBuffer)
{
int64 depth = 0;