zephyr
bb81e283dd
Updates #3. Co-authored-by: Branden J Brown <zephyrtronium@gmail.com> Reviewed-on: #9 Reviewed-by: madxmike <madxmike@noreply.localhost>
17 lines
469 B
C#
17 lines
469 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// Component that makes a duder a duder.
|
|
/// Manages class, skills, level, attrs, and AI.
|
|
/// </summary>
|
|
public class HeroUnit : MonoBehaviour
|
|
{
|
|
[SerializeField] private new string name;
|
|
[SerializeField] private HeroClassSO class_;
|
|
[SerializeField] private long level;
|
|
[SerializeField] private long xp;
|
|
[SerializeField] private HeroAttributesSO attrs;
|
|
}
|