fielding arrays

BlitzMax Forums/BlitzMax Beginners Area/fielding arrays

yzzm(Posted 2009) [#1]
does anyone know if it is possible to field an array in a type?


Who was John Galt?(Posted 2009) [#2]
A type field can contain an array, if that's what you mean.


TaskMaster(Posted 2009) [#3]
Sure...

Type MyType
 Field MyArray:Int[30]

End Type