Esempio n. 1
0
 internal static List <ReformValue> PossibleStatuses = new List <ReformValue>();// { NaturalEconomy, StateCapitalism, PlannedEconomy };
 public TaxationForRich(Country country) : base("Taxation for rich", "", country)
 {
     for (int i = 0; i <= 10; i++)
     {
         PossibleStatuses.Add(new ReformValue(" tax", "", new Procent(i * 0.1f), i, ConditionsList.AlwaysYes));
     }
     status = PossibleStatuses[1];
 }
Esempio n. 2
0
 internal override void setValue(AbstractReformValue selectedReform)
 {
     status = (ReformValue)selectedReform;
 }
Esempio n. 3
0
    /// ////////////


    /// ////////////
    public Economy(Country country) : base("Economy", "Your economy policy", country)
    {
        status = NaturalEconomy;
    }
Esempio n. 4
0
 public Government(Country country) : base("Government", "Form of government", country)
 {
     status = Tribal;
 }