diff options
Diffstat (limited to 'Assets/Scripts/Unit/Component/UnitSkill.cs')
-rw-r--r-- | Assets/Scripts/Unit/Component/UnitSkill.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Assets/Scripts/Unit/Component/UnitSkill.cs b/Assets/Scripts/Unit/Component/UnitSkill.cs new file mode 100644 index 00000000..6a6a3a0e --- /dev/null +++ b/Assets/Scripts/Unit/Component/UnitSkill.cs @@ -0,0 +1,12 @@ +using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+// 技能逻辑
+[DisallowMultipleComponent]
+
+public class UnitSkill : UnitComponent
+{
+
+
+}
|