Exemple #1
0
 public MenuOption(string text, internalAction action)
 {
     this.Text   = text;
     this.Action = action;
 }
Exemple #2
0
 public MenuOption(Texture2D texture, string text, internalAction action)
 {
     this.Texture = texture;
     this.Text    = text;
     this.Action  = action;
 }