Advertisement
Fhernd

PosicionCasilla.cs

Jul 25th, 2014
2,555
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.74 KB | None | 0 0
  1. // ===++===
  2. //
  3. //    OrtizOL
  4. //
  5. // ===--===
  6. /*============================================================
  7. //
  8. // Clase: PosicionCasilla.cs
  9. //
  10. // Propósito: Representar las nueve posiciones casillas del
  11. // tablero de triqui.
  12. //
  13. ============================================================*/
  14.  
  15. namespace Triqui.Modelo
  16. {
  17.     /// <summary>
  18.     /// Las nueve posiciones del tablero de triqui.
  19.     /// </summary>
  20.     public enum PosicionCasilla
  21.     {
  22.         Ninguna = 0,
  23.         SuperiorIzquierda = 1,
  24.         SuperiorCentro = 2,
  25.         SuperiorDerecha = 3,
  26.         MedioIzquierda = 4,
  27.         MedioCentro = 5,
  28.         MedioDerecha = 6,
  29.         InferiorIzquierda = 7,
  30.         InferiorCentro = 8,
  31.         InferiorDerecha = 9
  32.     }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement