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]; }
internal override void setValue(AbstractReformValue selectedReform) { status = (ReformValue)selectedReform; }
/// //////////// /// //////////// public Economy(Country country) : base("Economy", "Your economy policy", country) { status = NaturalEconomy; }
public Government(Country country) : base("Government", "Form of government", country) { status = Tribal; }