Пример #1
0
 public void AddLearned(string cmd, InterpreterItem.OwnerType type, string content, string[] tokens)
 {
     if (_learned_contents == null)
     {
         _learned_contents = new LearnedContent();
     }
     _learned_contents.AddKeyword(cmd, type, content, tokens);
     SaveLearned(_learned_contents);
 }