示例#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;
 }