Example #1
0
 /// <summary>
 /// Checks if a value with given key has been remembered before
 /// </summary>
 /// <param name="key">The key to retrieve the value</param>
 /// <returns>true if actor can recall a value from memory</returns>
 public bool CanRecall(string key)
 {
     return(notepad.HasWroteDown(key));
 }