idle-survivors/Assets/Scripts/HeroUnit.cs

17 lines
469 B
C#
Raw Normal View History

2023-07-30 18:56:11 -04:00
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>
2023-08-02 22:31:10 -04:00
public class HeroUnit : MonoBehaviour
2023-07-30 18:56:11 -04:00
{
2023-08-01 15:42:58 -04:00
[SerializeField] private new string name;
[SerializeField] private HeroClassSO class_;
[SerializeField] private long level;
[SerializeField] private long xp;
[SerializeField] private HeroAttributesSO attrs;
2023-07-30 18:56:11 -04:00
}