Пример #1
0
 public Game(string name, AppTypEnum typ, string publisher,
             bool singlePlayer, bool multiplayer, bool online, bool offline) : base(name, typ, publisher)
 {
     SinglePlayer = singlePlayer;
     Multiplayer  = multiplayer;
     Online       = online;
     Offline      = offline;
 }
Пример #2
0
 public App(string name, AppTypEnum typ, string publisher)
 {
     Name      = name;
     Typ       = typ;
     Publisher = publisher;
 }