Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ===++===
- //
- // OrtizOL
- //
- // ===--===
- /*============================================================
- //
- // Clase: CategoriaJuego.cs
- //
- // Propósito: Modelar las diferentes categorías de los
- // juegos.
- //
- ============================================================*/
- namespace JuegosCelulares.Modelo
- {
- /// <summary>
- /// Enumeración con las categorías de los juegos.
- /// </summary>
- public enum CategoriaJuego
- {
- Ninguna = 0,
- Aventura = 1,
- Accion = 2,
- Deporte = 3,
- Velocidad = 4
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement