I have a 2D array that is full of literal objects. The objects have properties that are either true or false. My problem:
I have tried setting the the properties in this fashion
SpacesObjectsArray[2][0].HasRotator = true;
This however, will set every .HasRotator property in the array to true not just the one located at [2][0].
What am I doing wrong?