first commit

This commit is contained in:
2026-06-04 19:34:38 +03:00
commit 6318b20158
110 changed files with 9536 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
using UnityEngine;
[CreateAssetMenu(fileName = "ItemData", menuName = "Dialogue/ItemData")]
public class ItemData : ScriptableObject
{
public string itemId;
public string itemName;
[TextArea(2, 5)]
public string description;
public Color itemColor = Color.white;
public int maxStack = 99;
}