2026-01-05 12:16:58 +05:30

11 lines
186 B
C#

using UnityEngine;
public class ItemBase : ObjectBase
{
[SerializeField] private ItemType itemType;
public int nodePlacementIndex;
public ItemType ItemType => itemType;
}