You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sae201_qwirkle/Qwirkle/QwirkleClassLibrary/Events/PlaceTileNotifiedEventArgs.cs

17 lines
397 B

using QwirkleClassLibrary.Tiles;
namespace QwirkleClassLibrary.Events
{
public class PlaceTileNotifiedEventArgs : EventArgs
{
public Tile Tile { get; private set; }
public string Reason { get; private set; }
public PlaceTileNotifiedEventArgs(Tile tile, string reason)
{
this.Tile = tile;
this.Reason = reason;
}
}
}