Esempio n. 1
0
 private HumanoidCharacterProfile(
     string name,
     string species,
     int age,
     Sex sex,
     Gender gender,
     HumanoidCharacterAppearance appearance,
     ClothingPreference clothing,
     BackpackPreference backpack,
     Dictionary <string, JobPriority> jobPriorities,
     PreferenceUnavailableMode preferenceUnavailable,
     List <string> antagPreferences)
 {
     Name                  = name;
     Species               = species;
     Age                   = age;
     Sex                   = sex;
     Gender                = gender;
     Appearance            = appearance;
     Clothing              = clothing;
     Backpack              = backpack;
     _jobPriorities        = jobPriorities;
     PreferenceUnavailable = preferenceUnavailable;
     _antagPreferences     = antagPreferences;
 }
Esempio n. 2
0
 public HumanoidCharacterProfile(
     string name,
     int age,
     Sex sex,
     Gender gender,
     HumanoidCharacterAppearance appearance,
     ClothingPreference clothing,
     IReadOnlyDictionary <string, JobPriority> jobPriorities,
     PreferenceUnavailableMode preferenceUnavailable,
     IReadOnlyList <string> antagPreferences)
     : this(name, age, sex, gender, appearance, clothing, new Dictionary <string, JobPriority>(jobPriorities),
            preferenceUnavailable, new List <string>(antagPreferences))
 {
 }