// Override this method in your own subclass to process the received event data
 virtual public void OnReceivedText(object sender, TextEventArgs args)
 {
     //Debug.Log("Hey we got some text to do something with!");
 }
Exemple #2
0
 protected void RaiseOnReceivedText(object sender, TextEventArgs e)
 {
     OnReceivedText?.Invoke(this, e);
 }