using System.Collections;
using System.Collections.Generic;
using UnityEngine;


[CreateAssetMenu(menuName = "ScriptableObject/GameSet")]
public class GameSet : ScriptableObject
{
    [Range(5,10)]
    public float rank;
}
