Exemple #1
0
 public void DisplaySet(CoordSet cs)
 {
     tiles = new TrackerTile[10, 10];
     foreach (var item in cs.GetAllCoords())
     {
         this[item] = TrackerTile.Hit;
     }
 }
Exemple #2
0
        public CoordPair getRandomMove()
        {
            var all = RandomHitCandidates.GetAllCoords();

            return(all[rnd.Next(all.Length)]);
        }