예제 #1
0
파일: Game.cs 프로젝트: Habi95/CSharp
 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
파일: App.cs 프로젝트: Habi95/CSharp
 public App(string name, AppTypEnum typ, string publisher)
 {
     Name      = name;
     Typ       = typ;
     Publisher = publisher;
 }