forked from Shardstone/trail-into-darkness
13 lines
310 B
C#
13 lines
310 B
C#
using TMPro;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace Nox.UI {
|
|
public class AttributeReference : MonoBehaviour {
|
|
public Button removePointsButton;
|
|
public Button addPointsButton;
|
|
public TextMeshProUGUI attributeName;
|
|
public TextMeshProUGUI attributeValue;
|
|
}
|
|
}
|