Spending/Upgrades/Strike/IUpradeableSize.cs
namespace PlanetMeat;

public interface IUpradeableSize
{
	ValueAggregator<int> AggregateSize { get; }
}

public static partial class Extensions
{
	public static int GetStrikeSize( this IUpradeableSize size ) => size.AggregateSize.Total;
}