summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Unit/Components/UnitState/UnitState.cs
blob: aff1e0f36f6aef1778651e7f9055ebd303bc72c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

// 角色状态机
[DisallowMultipleComponent]
public class UnitState : UnitComponent
{


}