Add project files.

This commit is contained in:
2025-12-16 08:51:34 -05:00
parent ed4d50a5bd
commit f7e3fe0a47
140 changed files with 2946 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
namespace AlienAttack.MonoGame.Things;
public class MoveableSprite(int x, int y) : Sprite(x, y)
{
public float XVelocity { get; protected set; } = 0;
public float YVelocity { get; protected set; } = 0;
public override void Update(SpriteUpdateContext context)
{
XPosition += XVelocity;
YPosition += YVelocity;
base.Update(context);
}
}