Example #1
0
 /// <summary>
 /// cTor.
 /// </summary>
 /// <param name="location"></param>
 /// <param name="baseTile"></param>
 internal LocationSelectedEventArgs(MapLocation location, MapTileBase baseTile)
 {
     _location = location;
     _baseTile = baseTile;
 }
Example #2
0
 public SelectedTileChangedEventArgs(MapLocation newSelected, MapTileBase selectedTile)
 {
     this.newSelected  = newSelected;
     this.selectedTile = selectedTile;
 }