public bool TryGetBlueprint(string name, out Blueprint value) { return(Container.TryGetValue(name, out value)); }
public BlueprintManager AddBlueprint(Blueprint value) { Container.Add(value.name, value); return(this); }