diff --git a/Assets/Scripts/EventSystem.cs b/Assets/Scripts/EventSystem.cs
new file mode 100644
index 0000000000000000000000000000000000000000..aeb877eef995e50e844a1e6b3e6b9cc23e2e36f1
--- /dev/null
+++ b/Assets/Scripts/EventSystem.cs
@@ -0,0 +1,25 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public static class EventSystem
+{
+    static Dictionary<EventType, List<IAction>> events = new Dictionary<EventType, List<IAction>>();
+
+
+    public static void AddEvent(EventType name, IAction target) {
+        if (!events.ContainsKey(name))
+            events.Add(name, new List<IAction>());
+        events[name].Add(target);
+    }
+
+    public static void EventHappened(EventType name)
+    {
+        if (events.ContainsKey(name))
+        {
+            foreach (IAction e in events.Values){
+                e.React();
+            }
+        }
+    }
+}
diff --git a/Assets/Scripts/EventSystem.cs.meta b/Assets/Scripts/EventSystem.cs.meta
new file mode 100644
index 0000000000000000000000000000000000000000..dfe7177335d1ce8be10e2a1d335ee5e24854968d
--- /dev/null
+++ b/Assets/Scripts/EventSystem.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 8035379af60d7a344bf9033fff4a1f3f
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/Assets/Scripts/EventType.cs b/Assets/Scripts/EventType.cs
new file mode 100644
index 0000000000000000000000000000000000000000..97a4e415c85f0dcddcfed26af0cf28022ffa2dc6
--- /dev/null
+++ b/Assets/Scripts/EventType.cs
@@ -0,0 +1,8 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public enum EventType
+{
+    TimePeriodChanged
+}
diff --git a/Assets/Scripts/EventType.cs.meta b/Assets/Scripts/EventType.cs.meta
new file mode 100644
index 0000000000000000000000000000000000000000..deca5704e3fb321cf72d067859f8858d338f2f4e
--- /dev/null
+++ b/Assets/Scripts/EventType.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 173740ad07280db429023b38a0e230a7
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: 
diff --git a/Assets/Scripts/IAction.cs b/Assets/Scripts/IAction.cs
new file mode 100644
index 0000000000000000000000000000000000000000..51d28e5826b152bd8c975595f26db6a644d36655
--- /dev/null
+++ b/Assets/Scripts/IAction.cs
@@ -0,0 +1,8 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public interface IAction
+{
+    void React();
+}
diff --git a/Assets/Scripts/IAction.cs.meta b/Assets/Scripts/IAction.cs.meta
new file mode 100644
index 0000000000000000000000000000000000000000..8ecd36f7a7fe45b7251df0dd2a78b719095885ad
--- /dev/null
+++ b/Assets/Scripts/IAction.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 3804ff07da1145d4dafd154188b42f89
+MonoImporter:
+  externalObjects: {}
+  serializedVersion: 2
+  defaultReferences: []
+  executionOrder: 0
+  icon: {instanceID: 0}
+  userData: 
+  assetBundleName: 
+  assetBundleVariant: