From d8d3a69c36bf640fd77deb8a9e4d3127cd17e3ba Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Sun, 30 Jul 2023 08:41:01 -0500 Subject: [PATCH] add non-attribute XP and threat to enemy stats --- Assets/Scripts/EnemyAttributesSO.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Assets/Scripts/EnemyAttributesSO.cs b/Assets/Scripts/EnemyAttributesSO.cs index ce9744d..9d1a39f 100644 --- a/Assets/Scripts/EnemyAttributesSO.cs +++ b/Assets/Scripts/EnemyAttributesSO.cs @@ -8,6 +8,8 @@ public class EnemyAttributesSO : ScriptableObject [SerializeField] private Attribute SPD; [SerializeField] private Attribute RNG; [SerializeField] private Attribute MND; + public long XP { get; private set; } + public long Threat { get; private set; } public static EnemyAttributesSO New() {