Arrays to hold x,y position

Alright so I've never actually arrays and I'm sure there's a LOT better way of doing this. I just need to get 10 x,y locations in an easy to see form like this so i can do things like
So can someone teach a guy some arrays, por favor? They seem to be quite useful and if i could just get my foot in the door i feel i could walk myself in
- Code: Select all
x=pos[0].x;
- Code: Select all
Actor pos[9];
And this is what i came up with, pretty bad execution i assume :lol:
//x position
pos[0].x=15;
pos[1].x=15;
pos[2].x=15;
pos[3].x=15;
pos[4].x=15;
pos[5].x=15;
pos[6].x=15;
pos[7].x=15;
pos[8].x=15;
pos[9].x=15;
//y position
pos[0].y=15;
pos[1].y=15;
pos[2].y=15;
pos[3].y=15;
pos[4].y=15;
pos[5].y=15;
pos[6].y=15;
pos[7].y=15;
pos[8].y=15;
pos[9].y=15;
So can someone teach a guy some arrays, por favor? They seem to be quite useful and if i could just get my foot in the door i feel i could walk myself in
