This commit is contained in:
ninemine
2025-07-02 18:46:09 +08:00
parent 9345700d8a
commit 15878d7e3b
5 changed files with 93 additions and 23 deletions

View File

@@ -45,11 +45,12 @@ namespace Convention.Symbolization.Internal
Structures.Add(structure.SymbolInfo.SymbolName, structure);
}
public void EndAndTApplyUpdate()
public bool EndAndTApplyUpdate()
{
Updateable--;
if (Updateable == 0)
Refresh();
return Updateable == 0;
}
private readonly Dictionary<string, int> SymbolCounter = new();