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