8 lines
203 B
C#
8 lines
203 B
C#
namespace AlienAttack.MonoGame.Things.Weapons;
|
|
|
|
public interface IWeapon
|
|
{
|
|
int FireThreshold { get; }
|
|
void UpdateFireThreshold();
|
|
bool TryFire(Sprite owner, SpriteUpdateContext context);
|
|
} |