diff --git a/Collective-Risk_Dilemma.py b/Collective-Risk_Dilemma.py
index 4dd97ad5433cec5cbd5a38834b87c6f79d5c0f0a..e8bc02c750a20c694d5189a2842b2b1b8ac5bedd 100755
--- a/Collective-Risk_Dilemma.py
+++ b/Collective-Risk_Dilemma.py
@@ -8,6 +8,7 @@ import matplotlib.pyplot as plt
 import numpy as np
 import math
 
+
 # Constants ____________________________________________________
 
 N = 100  # Size of the population
diff --git a/agent.py b/agent.py
new file mode 100644
index 0000000000000000000000000000000000000000..509b127cea1227a94959708d8aee826bb795ab6a
--- /dev/null
+++ b/agent.py
@@ -0,0 +1,16 @@
+import game
+
+
+
+
+class Agent():
+
+    def __init__(self):
+
+        self.undefined = None
+
+
+    def chooseAction(selfs):
+
+        return 0
+        
\ No newline at end of file
diff --git a/game.py b/game.py
new file mode 100644
index 0000000000000000000000000000000000000000..bd23c0d24db9eee8595bdab32a98334b55435157
--- /dev/null
+++ b/game.py
@@ -0,0 +1,6 @@
+import agent
+import matplotlib.pyplot as plt
+import numpy as np
+import math
+
+