コード例 #1
0
ファイル: World.cs プロジェクト: KarimovSamir/DesignPatterns
 public World(Continent continent)
 {
     predator  = continent.CreatePredator();
     herbivore = continent.CreateHerbivore();
 }