21 lines
642 B
C#
21 lines
642 B
C#
/// ---------------------------------------------
|
|
/// Ultimate Character Controller
|
|
/// Copyright (c) Opsive. All Rights Reserved.
|
|
/// https://www.opsive.com
|
|
/// ---------------------------------------------
|
|
|
|
namespace Opsive.UltimateCharacterController.Items
|
|
{
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// Identifier class used to determine where the item GameObjects are located.
|
|
/// </summary>
|
|
public class ItemSlot : MonoBehaviour
|
|
{
|
|
[Tooltip("An identifier for the ItemSlot component.")]
|
|
[SerializeField] protected int m_ID;
|
|
|
|
public int ID { get { return m_ID; } set { m_ID = value; } }
|
|
}
|
|
} |