12 lines
224 B
C#
12 lines
224 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace SimpleInventorySystem
|
|||
|
{
|
|||
|
public class PickUpRange : MonoBehaviour
|
|||
|
{
|
|||
|
[HideInInspector] public PickUp pickUp;
|
|||
|
}
|
|||
|
}
|