summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Application/ISubsystem.cs
diff options
context:
space:
mode:
Diffstat (limited to 'WorldlineKeepers/Assets/Scripts/Application/ISubsystem.cs')
-rw-r--r--WorldlineKeepers/Assets/Scripts/Application/ISubsystem.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/WorldlineKeepers/Assets/Scripts/Application/ISubsystem.cs b/WorldlineKeepers/Assets/Scripts/Application/ISubsystem.cs
new file mode 100644
index 0000000..5bbc60d
--- /dev/null
+++ b/WorldlineKeepers/Assets/Scripts/Application/ISubsystem.cs
@@ -0,0 +1,23 @@
+using Mono.CompilerServices.SymbolWriter;
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+
+namespace WK
+{
+
+ public interface ISubsystem
+ {
+
+ void OnAwake();
+ void OnStart();
+ void OnUpdate();
+ void OnFixedUpdate();
+ void OnDestroy();
+ void OnApplicationQuit();
+ void OnApplicationPause();
+
+ }
+
+} \ No newline at end of file