Added bootstrap scene

This commit is contained in:
2026-05-19 14:11:58 +01:00
parent 8237eb1fcf
commit f826689bdd
16 changed files with 661 additions and 6 deletions

View File

@@ -49,7 +49,15 @@ namespace PashaBibko.Pacore
/* Adds the class type to each attribute in the dictionary */
foreach (Type type in seen)
{
AttributeCache[type].Add(current);
if (AttributeCache.ContainsKey(type))
{
AttributeCache[type].Add(current);
}
else
{
AttributeCache.Add(type, new List<Type> { current });
}
}
}
}