Exemplo n.º 1
0
 /// <summary>
 /// Update the stored information to match what is passed here or add if it doesn't already exist
 /// </summary>
 internal void UpdateSingleBelief(NPCBelief name, object value = null, params object[] param)
 {
     UpdateSingleBelief(string.Format(name.Description(), param), value);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Loaded stored information
 /// </summary>
 internal string LoadBelief(NPCBelief belief, params object[] param)
 {
     return(LoadBelief(string.Format(belief.Description(), param)));
 }