8 lines
171 B
C#
8 lines
171 B
C#
|
using UnityEngine;
|
||
|
|
||
|
[CreateAssetMenu(menuName = "ScriptableObjects/ItemGroup", order = 2)]
|
||
|
public class ItemGroup : ScriptableObject
|
||
|
{
|
||
|
public string itemSpawnTypeName;
|
||
|
}
|