示例#1
0
 public InteractEventArgs(CUIElement.ElementType type)
 {
     this.type = type;
     arguments = new string[0];
 }
示例#2
0
 public InteractEventArgs(CUIElement.ElementType type, string[] args)
 {
     this.type = type;
     arguments = args;
 }
示例#3
0
 public InteractEventArgs(CUIElement.ElementType type)
 {
     this.type = type;
     arguments = Array.Empty <string>();
 }