add non-attribute XP and threat to enemy stats

This commit is contained in:
Branden J Brown 2023-07-30 08:41:01 -05:00
parent ee2d696cec
commit d8d3a69c36
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,8 @@ public class EnemyAttributesSO : ScriptableObject
[SerializeField] private Attribute SPD; [SerializeField] private Attribute SPD;
[SerializeField] private Attribute RNG; [SerializeField] private Attribute RNG;
[SerializeField] private Attribute MND; [SerializeField] private Attribute MND;
public long XP { get; private set; }
public long Threat { get; private set; }
public static EnemyAttributesSO New() public static EnemyAttributesSO New()
{ {