public override GameConfig GetConfig()
 {
     GameConfig config = new GameConfig("Slideshow", "Thomas", "This shouldn't appear, so you're witnessing a bug. Congrats.");
     config.IsPassive = true;
     return config;
 }
Example #2
0
 public override GameConfig GetConfig()
 {
     GameConfig config = new GameConfig("Pointillism", "Joel", "Draws a picture with dots.");
     //config.IsPassive = true;
     return config;
 }