From fdfc7dfb59c71bf6241f12fd8c0da162e60eb73e Mon Sep 17 00:00:00 2001
From: Liyao Zhu <stevens.zhu@gmail.com>
Date: Fri, 5 Apr 2019 15:52:36 +1100
Subject: [PATCH] game.py and agent.py structure build2

---
 agent.py | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/agent.py b/agent.py
index 509b127..0b4b98e 100644
--- a/agent.py
+++ b/agent.py
@@ -7,10 +7,15 @@ class Agent():
 
     def __init__(self):
 
+        'add variables to construct agent instance and define instance variables'
+
         self.undefined = None
 
 
+
+
     def chooseAction(selfs):
 
+        'implement your strategy here'
+
         return 0
-        
\ No newline at end of file
-- 
GitLab