Extending types...

BlitzMax Forums/BlitzMax Beginners Area/Extending types...

Can I have a type which extends a type which extends a type?

Example:

Type T1
End Type

Type T2 Extends T1
End Type

Type T3 Extends T2
End Type

Sure, thats no problem.

You could even have a T32 extends T1 ... beside that types you have.

Alright, thanks for clearing that up.