I am switching from Java to C# and I am wondering if this is possible? What I want to do is create a two dimensional array of the type Enum {north, south, east, west}
. That way I can call map[1,2].north
to find out if that cell on the map has a north wall or not.
Sorry for the crude code, I do not have access to my computer at the moment, so I am being a bit abstract.