1
Fork 0
mirror of https://github.com/Steffo99/octogem.git synced 2024-11-21 20:44:19 +00:00
octogem/Assets/Scripts/Components/UnitStats.cs
2018-09-27 00:38:49 +02:00

10 lines
206 B
C#

using UnityEngine;
public class UnitStats : MonoBehaviour
{
public UnitStat attack;
public UnitStat defense;
public UnitStat skill;
public UnitStat evasion;
public UnitStat speed;
}