Exemple #1
0
 public Hand(BallLightning ball)
 {
     origin    = new Vector2(6.5f, 9f);
     texture   = Miasma.EntityExtras[25];
     this.ball = ball;
     ball.putInHand(this);
 }
Exemple #2
0
 public override void Action2()
 {
     ball = new BallLightning(Position);
     ball.putInHand(this);
     off = false;
 }