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

8 lines
219 B
C#
Raw Normal View History

2021-11-26 11:16:25 +03:00
using UnityEngine;
public class RewardButtonsSection : BaseRewardSection
{
[SerializeField] private RewardButton _rewardButton = null;
protected override RewardButton RewardButton => _rewardButton;
}