Example #1
0
 private void performActionWithTarget(string actionName, string target) => ActionController.PerformActionWithTarget(_conversation, actionName, target);
Example #2
0
 private void performActionWithMessage(string actionName, string message) => ActionController.PerformActionWithMessage(_conversation, actionName, message);
Example #3
0
 // Pass actions to the action controller
 private void performAction(string actionName) => ActionController.PerformAction(_conversation, actionName);
 public void PerformActionWithTarget(string actionName, string target) => ActionController.PerformActionWithTarget(_currentConversation, actionName, target);
 public void PerformActionWithMessage(string actionName, string message) => ActionController.PerformActionWithMessage(_currentConversation, actionName, message);
 // Called from the UIController, used by the action custom tag
 public void PerformAction(string actionName) => ActionController.PerformAction(_currentConversation, actionName);