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

13 lines
310 B
C#

using UnityEngine;
namespace RND
{
public class TimerRewardButtonsSection : BaseRewardSection
{
[SerializeField] private RewardTimerButton _rewardButton = null;
public int Power => _rewardButton.Power;
protected override RewardButton RewardButton => _rewardButton;
}
}