Created
July 25, 2014 05:21
-
-
Save Fhernd/2743fe0b4edcf54896ff to your computer and use it in GitHub Desktop.
Enumeración PosicionCasilla.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ===++=== | |
// | |
// 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