Difference between revisions of "Location"
Line 1: | Line 1: | ||
==The code== | ==The code== | ||
<tabber> | <tabber> | ||
− | + | CSharp | |
+ | |-| | ||
<syntaxhighlight lang="csharp" line> | <syntaxhighlight lang="csharp" line> | ||
class Location | class Location | ||
Line 15: | Line 16: | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | + | |-| | |
+ | VB | ||
+ | |-| | ||
</tabber> | </tabber> | ||
=Explanation= | =Explanation= |
Revision as of 23:17, 30 November 2016
The code
Explanation
A location has 2 data items within the class, a Fox called Fox and a Warren called Warren.
When the location is created both are set to null, this means they are empty. So each location could store only one Warren and one Fox. This class is used for each square of the grid (2d Array) called Landscape generated in the simulation class.