private void Start() { people = new PeopleStat(); defense = new DefenseStat(); faith = new FaithStat(); food = new FoodStat(); sell = new UndoOrder(); }
public User(MoodStat Mood, HpStat Hp, FoodStat Food) { this.Mood = Mood; this.Hp = Hp; this.Food = Food; }
public User(string Name, TimeStat Times, Valutes Valutes, BottlesStat Bottles, TransportStat Transports, PropertyStat Properties, RaitingStat Raiting, StatusStat Status, EducStat Educ, MoodStat Mood, HpStat Hp, FoodStat Food) : this(Mood, Hp, Food) { this.Name = Name; this.Times = Times; this.Valutes = Valutes; this.Bottles = Bottles; this.Transports = Transports; this.Properties = Properties; this.Raiting = Raiting; this.Status = Status; this.Educ = Educ; Passport = new PassportStat(false); DriverLicense = new DriverLicenseStat(false); }