Units/Bounty.cs
namespace PlanetMeat;

[Group( "Planet Meat - Units" ), Title( "Bounty" ), Icon( "local_offer" )]
public sealed class Bounty : Component, ITargetableListener
{
	[Property] public Dictionary<string, double> Reward { get; set; } = [];

	public void OnKilled()
	{
		Bank.Current.ProfitBatch( Reward );
	}
}