Pedro Gomes 4c3edff503 Crafting system working (WIP)
- Crafting UI fully functional
- Crafting Stat stones and modular equippable items fully functional
Notes:
- Urgent need for exclusive(auto sorted) inventory for stones only
- Something to do with the "trash" modular items instead of just selling
- Add new uses for gold besides equipment, preset items will probably be worthless with modular crafting
2025-01-06 19:52:31 +00:00

10 lines
169 B
C#

using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
public class StatElement : MonoBehaviour
{
public TMP_Text statValue;
}