|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
namespace Models.Game;
|
|
|
|
|
|
|
|
|
|
namespace Models.Game
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represents a cell in the operation grid of the game.
|
|
|
|
|
/// </summary>
|
|
|
|
@ -16,7 +16,8 @@ public class OperationCell : Position
|
|
|
|
|
/// <param name="x"></param>
|
|
|
|
|
/// <param name="y"></param>
|
|
|
|
|
public OperationCell(int x, int y) : base(x, y)
|
|
|
|
|
{ }
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Check the operation cell.
|
|
|
|
@ -26,3 +27,4 @@ public class OperationCell : Position
|
|
|
|
|
IsChecked = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|