예제 #1
0
 public EffectContext(Element actor, Element target, RLState state)
 {
     Actor  = actor;
     Target = target;
     State  = state;
     Stage  = state.Stage;
 }
예제 #2
0
 public EffectContext(Element actor, RLState state, Vector direction) : this(actor, state)
 {
     Direction = direction;
 }
예제 #3
0
 public EffectContext(Element actor, RLState state)
 {
     Actor = actor;
     State = state;
     Stage = state.Stage;
 }