Static helper that provides small user-facing economy help text. Defines an inner Section type with Title and Body, exposes a Sections list of three entries and a Footer string.
namespace NoChillquarium;
/// <summary>
/// Wallet click → short Ð primer.
/// </summary>
public static class EconomyHelp
{
public sealed class Section
{
public string Title { get; init; }
public string Body { get; init; }
}
public static IReadOnlyList<Section> Sections { get; } = new[]
{
new Section
{
Title = "Earn",
Body = "Fish tick Ð. Feed boosts. Fights pay."
},
new Section
{
Title = "Buy",
Body = "Shop for fish, food, tanks, decor, shady gear."
},
new Section
{
Title = "Sell",
Body = "Click a fish → Sell."
},
};
public static string Footer => "Tap wallet anytime";
}