I'm trying to make a grid based capture game, where the tiles will be changed regularly, so wanted to try to use an array to store numbers related to the tiles and then make the layout look accordingly. I'm not sure how to go about this as i'm still a rookie on arrays.
So a grid like
1 | 2 | 2
------------
1 | 1 | 2
------------
3 | 1 | 1
Would look something like
Neutral | Enemy | Enemy
--------------------------------------
Neutral | Neutral | Enemy
---------------------------------------
Friendly | Neutral | Neutral