11 lines
264 B
C#
11 lines
264 B
C#
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
namespace AlienAttack.MonoGame.Things.Explosions;
|
|
|
|
public class MineExplosion : Explosion
|
|
{
|
|
public MineExplosion(int x, int y, float xVel, float yVel) : base(x, y, xVel, yVel)
|
|
{
|
|
Scale = new(2, 2);
|
|
}
|
|
} |