mirror of
https://github.com/Steffo99/octogem.git
synced 2024-11-22 04:54:18 +00:00
11 lines
206 B
C#
11 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;
|
|||
|
}
|