UPF/Assets/Game/Scripts/Structures/XPRewards.cs
2022-10-25 01:00:45 +05:30

11 lines
244 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "XpRewards", menuName = "Game/XpRewards", order = 1)]
public class XPRewards : ScriptableObject
{
public XpPassReward[] rewards;
}