0
votes
Polymorphism Not Working Like I Thought It Would?
Using your example here's how Polymorphism can be implemented:
// cast derived object as base object
Decal myGenericDecal = null;
TransactionDecal myTransactionDecal = TransactionDe …
