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

10 lines
242 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "RankLevels", menuName = "Game/RankLevels", order = 1)]
public class RankLevels : ScriptableObject
{
public RankLevel[] levels;
}