11 lines
186 B
C#
11 lines
186 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
public class ItemBase : ObjectBase
|
||
|
|
{
|
||
|
|
[SerializeField] private ItemType itemType;
|
||
|
|
|
||
|
|
public int nodePlacementIndex;
|
||
|
|
|
||
|
|
public ItemType ItemType => itemType;
|
||
|
|
}
|