11 lines
260 B
C#
11 lines
260 B
C#
|
using UnityEngine;
|
|||
|
|
|||
|
namespace RND
|
|||
|
{
|
|||
|
public class RewardButtonsSection : BaseRewardSection
|
|||
|
{
|
|||
|
[SerializeField] private RewardButton _rewardButton = null;
|
|||
|
protected override RewardButton RewardButton => _rewardButton;
|
|||
|
|
|||
|
}
|
|||
|
}
|