Hey,
I would like to store the level information for my game in an array. Each level has 9 variables, and in total I would like to store information for 50 levels.
To do this for 3 levels...
I know this is probably deadly obvious, but how do I easily do it for 50 levels (without a reeeeeeally long command)
ta!
I would like to store the level information for my game in an array. Each level has 9 variables, and in total I would like to store information for 50 levels.
To do this for 3 levels...
Global LevelArray[][] = [ [0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0] ]
I know this is probably deadly obvious, but how do I easily do it for 50 levels (without a reeeeeeally long command)
ta!