blob: 4896e255012719ec0e36f79e6eefcc747de195ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System;
using System.Reflection;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// 角色状态机
[DisallowMultipleComponent]
public class UnitState : UnitComponent
{
}
|