using System.Collections.Generic; using UnityEngine; namespace RPGCoreCommon.DropTable { [System.Serializable] [CreateAssetMenu(menuName = "RPG Core/Drop Table")] public class DropTableSO : ScriptableObject { [SerializeField] internal DropTableGroup group; public Dictionary Get() { var result = new Dictionary(); group.Get(ref result); return result; } } }