// (c) 2005 kp@kp73.com
using System;
namespace KP.Tetris{
/// <summary>
/// Range of movements that can be applied to a tetramino in play.
/// </summary>
public enum Movement
{
/// <summary>
/// Move left one cell.
/// </summary>
Left,
/// <summary>
/// Move right one cell.
/// </summary>
Right,
/// <summary>
/// Move down the maxmium number of cells.
/// </summary>
Drop,
/// <summary>
/// Rotate the tetramino shape 90 degrees anti-clockwise.
/// </summary>
Rotate
}
}
|