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

13 lines
310 B
C#
Raw Normal View History

2021-12-29 20:50:11 +03:00
using UnityEngine;
namespace RND
{
public class TimerRewardButtonsSection : BaseRewardSection
{
[SerializeField] private RewardTimerButton _rewardButton = null;
public int Power => _rewardButton.Power;
protected override RewardButton RewardButton => _rewardButton;
}
}