void Update()
 {
     if (waitforpress && keyBinds.GetButtonDown("Interract"))
     {
         dialogueOption.Choice("Can I join your party?", yesEvent, noEvent);
     }
 }
    //set up buttons and functions

    public void TestYN()
    {
        dialogueOption.Choice("Ohoho, you're approaching me?", yesEvent, noEvent);
    }