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

11 lines
260 B
C#
Raw Normal View History

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