11 lines
186 B
C#
Raw Permalink Normal View History

2026-01-05 12:16:58 +05:30
using UnityEngine;
public class ItemBase : ObjectBase
{
[SerializeField] private ItemType itemType;
public int nodePlacementIndex;
public ItemType ItemType => itemType;
}