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/PlaceTileNotifiedEventArgs.cs

15 lines
357 B

namespace QwirkleClassLibrary
{
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;
}
}
}