The jam is running. Build something, or play the entries.
namespace PlanetMeat; public interface IUpradeableSize { ValueAggregator<int> AggregateSize { get; } } public static partial class Extensions { public static int GetStrikeSize( this IUpradeableSize size ) => size.AggregateSize.Total; }