10 lines
186 B
C#
10 lines
186 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu]
|
|
public class PlayerInventory : ScriptableObject
|
|
{
|
|
public int MaxSpace;
|
|
public List<ItemSlot> ItemSlots;
|
|
}
|