26 lines
442 B
C#
26 lines
442 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace SimpleInventorySystem
|
||
|
{
|
||
|
public class Inventory : MonoBehaviour
|
||
|
{
|
||
|
// Start is called before the first frame update
|
||
|
public List<Item> items;
|
||
|
|
||
|
//[SerializeField] private Slot[] slots;
|
||
|
|
||
|
|
||
|
void Start()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
// Update is called once per frame
|
||
|
void Update()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|