So I'm trying to create a grid using a 2D array, I need to assign images to each point of the 2D array but can't find a way with the knowledge I currently have. I have no issue creating the actual array, just assigning the image to the array.
mark = Content.Load<Texture2D>("mark");
peep1 = Content.Load<Texture2D>("peep1");
peep2 = Content.Load<Texture2D>("peep2");
peep3 = Content.Load<Texture2D>("peep3");
int[,] grid = new int[6, 6];
grid[0, 0] = peep1;
I have tried assigning the image in multiple ways, shown above was my first attempt as it is what I had saved. Sorry if this is really obvious, I'm still new.