Inheritance: ScriptableObjectNode
 void ExecuteNodeIfNotNull(DialogueNode node, GameObject actor, GameObject opponent)
 {
     if (node!=null){
         node.Execute(actor, opponent);
     }
 }