Files
BABA_YAGA/Assets/Opsive/UltimateCharacterController/Scripts/Items/ItemSlot.cs
2026-06-14 23:57:44 +07:00

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; } }
}
}