summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Tools/Statemachine/LiteStatemachine.cs
diff options
context:
space:
mode:
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)
+ {
+
+ }
+
+ }
+
+}