Arrays as Type fields

Blitz3D Forums/Blitz3D Programming/Arrays as Type fields

Shifty Geezer(Posted 2005) [#1]
Is it possible? I want an array created for each object...

Type thing
field x
field y
field stuff(10)
End Type

I'm guessing not and I'll have to access a static array instead, but it'd be nice.


GitTech(Posted 2005) [#2]
Type thing
    field x
    field y
    field stuff[10]
End Type


Only 1 dimensional arrays though.


aab(Posted 2005) [#3]
Yep. and static.


big10p(Posted 2005) [#4]
If you need it to be dynamic, use a bank instead.