summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Tools/Statemachine/LiteStatemachine.cs
diff options
context:
space:
mode:
authorchai <215380520@qq.com>2023-05-18 19:20:17 +0800
committerchai <215380520@qq.com>2023-05-18 19:20:17 +0800
commit5bb5da4caebfdc8627e331b4eb5c53457316ec44 (patch)
treea8dd5d9eea5c563f68f30da397cb890978cbd10a /WorldlineKeepers/Assets/Scripts/Tools/Statemachine/LiteStatemachine.cs
parentc66fe8c43a368eb4b23aa1e3104019aabf9e2274 (diff)
*misc
Diffstat (limited to 'WorldlineKeepers/Assets/Scripts/Tools/Statemachine/LiteStatemachine.cs')
-rw-r--r--WorldlineKeepers/Assets/Scripts/Tools/Statemachine/LiteStatemachine.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/WorldlineKeepers/Assets/Scripts/Tools/Statemachine/LiteStatemachine.cs b/WorldlineKeepers/Assets/Scripts/Tools/Statemachine/LiteStatemachine.cs
new file mode 100644
index 0000000..f119866
--- /dev/null
+++ b/WorldlineKeepers/Assets/Scripts/Tools/Statemachine/LiteStatemachine.cs
@@ -0,0 +1,23 @@
+using JetBrains.Annotations;
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace WK
+{
+
+ /// <summary>
+ /// ÇáÁ¿¼¶×´Ì¬»ú
+ /// </summary>
+ public abstract class LiteStatemachine
+ {
+
+
+ public void GotoState(int target)
+ {
+
+ }
+
+ }
+
+}