1
Fork 0
mirror of https://github.com/Steffo99/octogem.git synced 2024-11-22 04:54:18 +00:00
octogem/Assets/Scripts/Components/UnitStats.cs

11 lines
206 B
C#
Raw Permalink Normal View History

2018-09-26 22:38:49 +00:00
using UnityEngine;
public class UnitStats : MonoBehaviour
{
public UnitStat attack;
public UnitStat defense;
public UnitStat skill;
public UnitStat evasion;
public UnitStat speed;
}