Exemplo n.º 1
0
        public Recollection Know(object reference, object information, float strength)
        {
            Recollection recollection = new Recollection()
            {
                strength = strength, information = information, reference = reference
            };

            toRemember.Add(recollection);
            return(recollection);
        }
Exemplo n.º 2
0
 void Remember(Recollection recollection)
 {
     recollections.Add(recollection);
 }
Exemplo n.º 3
0
 public void Forget(Recollection recollection)
 {
     recollections.Remove(recollection);
 }