Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ===++===
- //
- // 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
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement