Advertisement
Fhernd

CategoriaJuego.cs

Jul 16th, 2014
1,348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1. // ===++===
  2. //
  3. //  OrtizOL
  4. //
  5. // ===--===
  6. /*============================================================
  7. //
  8. // Clase: CategoriaJuego.cs
  9. //
  10. // Propósito: Modelar las diferentes categorías de los
  11. // juegos.
  12. //
  13. ============================================================*/
  14.  
  15. namespace JuegosCelulares.Modelo
  16. {
  17.     /// <summary>
  18.     /// Enumeración con las categorías de los juegos.
  19.     /// </summary>
  20.     public enum CategoriaJuego
  21.     {
  22.         Ninguna = 0,
  23.         Aventura = 1,
  24.         Accion = 2,
  25.         Deporte = 3,
  26.         Velocidad = 4
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement