Added HUD drawing logic.

This commit is contained in:
2025-12-21 23:22:53 -05:00
parent ecdc501752
commit 42608a16e3
11 changed files with 247 additions and 39 deletions

View File

@@ -8,9 +8,7 @@ internal class MinigunBulletSmall : Bullet
{
public MinigunBulletSmall(float x, float y, float xVel, float yVel, Sprite owner) : base(x, y, xVel, yVel, owner)
{
XVelocity = xVel;
YVelocity = yVel;
Owner = owner;
BoundBox = new(0, 0, 7, 17);
Damage = 1;
}