コード例 #1
0
 public Artisans(int amount, Culture culture, Province where) : base(amount, PopType.Artisans, culture, where)
 {
     //changeProductionType();
 }
コード例 #2
0
 public Farmers(PopUnit pop, int sizeOfNewPop, Province where, Culture culture, IWayOfLifeChange oldLife) : base(pop, sizeOfNewPop, PopType.Farmers, where, culture, oldLife)
 {
 }
コード例 #3
0
 public Artisans(PopUnit pop, int sizeOfNewPop, Province where, Culture culture, IWayOfLifeChange oldLife) : base(pop, sizeOfNewPop, PopType.Artisans, where, culture, oldLife)
 {
     changeProductionType();
 }
コード例 #4
0
 public Capitalists(int iamount, Culture iculture, Province where) : base(iamount, PopType.Capitalists, iculture, where)
 {
 }
コード例 #5
0
 public Farmers(int iamount, Culture iculture, Province where) : base(iamount, PopType.Farmers, iculture, where)
 {
 }
コード例 #6
0
 public Aristocrats(int iamount, Culture iculture, Province where) : base(iamount, PopType.Aristocrats, iculture, where)
 {
 }
コード例 #7
0
 public Capitalists(PopUnit pop, int sizeOfNewPop, Province where, Culture culture, IWayOfLifeChange oldLife) : base(pop, sizeOfNewPop, PopType.Capitalists, where, culture, oldLife)
 {
 }
コード例 #8
0
ファイル: Soldiers.cs プロジェクト: BantamJoe/Prosperity-Wars
 public Soldiers(int iamount, Culture iculture, Province where) : base(iamount, PopType.Soldiers, iculture, where)
 {
 }
コード例 #9
0
 protected Investor(PopUnit source, int sizeOfNewPop, PopType newPopType, Province where, Culture culture) : base(source, sizeOfNewPop, newPopType, where, culture)
 {
 }
コード例 #10
0
 protected Investor(int amount, PopType popType, Culture culture, Province where) : base(amount, popType, culture, where)
 {
 }
コード例 #11
0
 public Aristocrats(PopUnit pop, int sizeOfNewPop, Province where, Culture culture) : base(pop, sizeOfNewPop, PopType.Aristocrats, where, culture)
 {
 }
コード例 #12
0
ファイル: Farmers.cs プロジェクト: bmjoy/EconomicSimulation
 public Farmers(PopUnit pop, int sizeOfNewPop, Province where, Culture culture) : base(pop, sizeOfNewPop, PopType.Farmers, where, culture)
 {
 }