コード例 #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;
 }