public Recollection Know(object reference, object information, float strength) { Recollection recollection = new Recollection() { strength = strength, information = information, reference = reference }; toRemember.Add(recollection); return(recollection); }
void Remember(Recollection recollection) { recollections.Add(recollection); }
public void Forget(Recollection recollection) { recollections.Remove(recollection); }