When the type hierarchy paradigm fails

BlitzMax Forums/BlitzMax Programming/When the type hierarchy paradigm fails

JoshK(Posted 2007) [#1]
Is there any solution to a problem like this?:

Type TAnimal

Type TUnderwaterAnimal Extends TAnimal

Type TFish Extends TUnderwaterAnimal

Type TMammal Extends TAnimal

Type TDolphin Extends TUnderwaterAnimal,TMammal?????


Dreamora(Posted 2007) [#2]
Not using pure extension but decoration.


This means:

Type TDolphin extends TAnimal
field mammal:TMammal
field underwater:TUnderwaterAnimal

...