Ejemplo n.º 1
0
 public SuspendedAction(ImuseAction action, int position, Scope localScope, int frameCount)
 {
     Action          = action;
     Position        = position;
     LocalScope      = localScope;
     FramesRemaining = frameCount;
 }
Ejemplo n.º 2
0
 public StartEvent(ImuseAction action) : base(action)
 {
 }
Ejemplo n.º 3
0
 public KeyPressEvent(string key, ImuseAction action) : base(action)
 {
     Key = key;
 }
Ejemplo n.º 4
0
 public TimedEvent(Time time, ImuseAction action) : base(action)
 {
     Time = time;
 }
Ejemplo n.º 5
0
 protected ImuseEvent(ImuseAction action)
 {
     Action = action;
 }
Ejemplo n.º 6
0
 public ActionValue(ImuseAction action) : base(RuntimeType.Action)
 {
     Value = action;
 }