SamsonGame/Assets/Scripts/Game/UI/RewardButtons/RewardButtonsSection.cs

11 lines
260 B
C#

using UnityEngine;
namespace RND
{
public class RewardButtonsSection : BaseRewardSection
{
[SerializeField] private RewardButton _rewardButton = null;
protected override RewardButton RewardButton => _rewardButton;
}
}