Game/2D/SecretChestReward.cs

Simple data container for a secret chest reward in the 2D game, holding icon path, label, coin and fragment counts, and a rare flag.

using Sandbox;

public class SecretChestReward
{
    public string Icon;
    public string Label;
    public int    Coins;
    public int    Fragments;
    public bool   IsRare;
}