コード例 #1
0
ファイル: ViewModel.cs プロジェクト: Zargess/DungeonManager
 public ViewModel()
 {
     EnemyCatalogue = new EnemyCatalogue();
 }
コード例 #2
0
ファイル: ViewModel.cs プロジェクト: Zargess/DungeonManager
 public void SetData(IViewModel other)
 {
     this.EnemyCatalogue = other.EnemyCatalogue;
 }
コード例 #3
0
 public void ImportEnemies(EnemyCatalogue other)
 {
     // TODO : Compare the enemies and include only the new ones.
     throw new NotImplementedException();
 }