You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public Explosion( int x, int y, Bitmap DeathSprite) : base()
{
this.x = x;
this.y = y;
sprite = DeathSprite; // the only reason you need to use this.x and this.y is because there are already x and y from the arguments in Explosion. That's why sprite doensn't need to be this.sprite