added full characte creation support

This commit is contained in:
Sebastian Bularca
2026-04-06 01:05:20 +02:00
parent 419201f2a5
commit 50832c491c
20 changed files with 1037 additions and 265 deletions

View File

@@ -2,8 +2,10 @@ using TMPro;
using UnityEngine;
using UnityEngine.UI;
public class StatReference : MonoBehaviour {
public TextMeshProUGUI statName;
public TextMeshProUGUI statValue;
public Image statBar;
namespace Nox.UI {
public class StatReference : MonoBehaviour {
public TextMeshProUGUI statName;
public TextMeshProUGUI statValue;
public Image statBar;
}
}