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; }
public App(string name, AppTypEnum typ, string publisher) { Name = name; Typ = typ; Publisher = publisher; }