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;
}
}
}