Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 25, 2014 05:21
Show Gist options
  • Save Fhernd/2743fe0b4edcf54896ff to your computer and use it in GitHub Desktop.
Save Fhernd/2743fe0b4edcf54896ff to your computer and use it in GitHub Desktop.
Enumeración PosicionCasilla.cs
// ===++===
//
// OrtizOL
//
// ===--===
/*============================================================
//
// Clase: PosicionCasilla.cs
//
// Propósito: Representar las nueve posiciones casillas del
// tablero de triqui.
//
============================================================*/
namespace Triqui.Modelo
{
/// <summary>
/// Las nueve posiciones del tablero de triqui.
/// </summary>
public enum PosicionCasilla
{
Ninguna = 0,
SuperiorIzquierda = 1,
SuperiorCentro = 2,
SuperiorDerecha = 3,
MedioIzquierda = 4,
MedioCentro = 5,
MedioDerecha = 6,
InferiorIzquierda = 7,
InferiorCentro = 8,
InferiorDerecha = 9
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment