Added configurable weapons.

This commit is contained in:
2026-01-03 21:49:27 -05:00
parent 79fd63c3ce
commit e8e31bb143
37 changed files with 332 additions and 88 deletions

View File

@@ -0,0 +1,11 @@
using AlienAttack.MonoGame.Things.Bullets;
namespace AlienAttack.MonoGame.Things.Weapons;
public sealed class WeaponDef
{
public required string Name { get; init; }
public required ShotPattern Pattern { get; init; }
public required BulletDef Bullet { get; init; }
public required string FireSfxKey { get; init; } = "player_fire";
}