Interfaces/IShootable.cs
using Clover.Objects;

namespace Clover.Interfaces;

public interface IShootable
{
	
	public void OnShot( Pellet pellet );
	
}