Closed WittleWolfie closed 2 years ago
e.g. How do I get from Blueprint<BlueprintFeature, BlueprintFeatureReference> to Blueprint<BlueprintUnitFact, BlueprintUnitFactReference>?
Blueprint<BlueprintFeature, BlueprintFeatureReference>
Blueprint<BlueprintUnitFact, BlueprintUnitFactReference>
Also, maybe I can do a single type declaration by creating Blueprint<T> : Blueprint<T, BlueprintReference<T>>??
Blueprint<T> : Blueprint<T, BlueprintReference<T>>
This cannot be done. The problem is the need to declare new() on the reference for CreateTyped<TRef> to work.
new()
CreateTyped<TRef>
Actually got a fix in 2.0.3!
Fixed w/ 2.0.3 release. Behold Blueprint<TRef>!
Blueprint<TRef>
e.g. How do I get from
Blueprint<BlueprintFeature, BlueprintFeatureReference>
toBlueprint<BlueprintUnitFact, BlueprintUnitFactReference>
?Also, maybe I can do a single type declaration by creating
Blueprint<T> : Blueprint<T, BlueprintReference<T>>
??