Example #1
0
 public ViewModel()
 {
     EnemyCatalogue = new EnemyCatalogue();
 }
Example #2
0
 public void SetData(IViewModel other)
 {
     this.EnemyCatalogue = other.EnemyCatalogue;
 }
Example #3
0
 public void ImportEnemies(EnemyCatalogue other)
 {
     // TODO : Compare the enemies and include only the new ones.
     throw new NotImplementedException();
 }