コード例 #1
0
 public ButtonAddedEventArgs(ActionScope WhoAdded, JSONButton Button)
 {
     this.WhoAdded = WhoAdded;
     this.Button   = Button;
 }
コード例 #2
0
 public static T SetActionScope <T>(this T entity, ActionScope value)
     where T : GuiCharacterAction
 {
     entity.SetField("actionScope", value);
     return(entity);
 }
コード例 #3
0
 public LibraryAction(ActionScope scope)
 {
     this.Scope = scope;
 }
コード例 #4
0
 public override void Execute()
 {
     ActionScope.GainCardFromSupply(Item);
 }
コード例 #5
0
 public ActionType(ActionScope scope)
 {
     this.ActionScope = scope;
 }
コード例 #6
0
 public static T SetActionScope <T>(this T entity, ActionScope value)
     where T : ActionDefinition
 {
     entity.SetField("actionScope", value);
     return(entity);
 }
コード例 #7
0
 public ActionAttribute(ActionScope Scope)
 {
     this.Scope = Scope;
 }