projectEli/Assets/Inventory System/Scripts/Inventory/PickUpRange.cs

12 lines
224 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace SimpleInventorySystem
{
public class PickUpRange : MonoBehaviour
{
[HideInInspector] public PickUp pickUp;
}
}