Extending types...

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

po(Posted 2006) [#1]
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


Dreamora(Posted 2006) [#2]
Sure, thats no problem.

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


po(Posted 2006) [#3]
Alright, thanks for clearing that up.