How should we go about designing the internal structure of sokoban?
I'm thinking we have a simple multidimensional (2D) array, and for now we can use integers to keep track of the data but we can switch to using enums later.
(here's how you'd initialize it) int[,] multidimensionalArray = new int[,]
How should we go about designing the internal structure of sokoban?
I'm thinking we have a simple multidimensional (2D) array, and for now we can use integers to keep track of the data but we can switch to using enums later.
(here's how you'd initialize it)
int[,] multidimensionalArray = new int[,]