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

@@ -1,16 +1,12 @@
using TMPro;
using UnityEngine;
using UnityEngine.UI;
public class AttributeReference : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
namespace Nox.UI {
public class AttributeReference : MonoBehaviour {
public Button removePointsButton;
public Button addPointsButton;
public TextMeshProUGUI attributeName;
public TextMeshProUGUI attributeValue;
}
}