diff gamelib/research.py @ 24:23720d0fd9a0

Make SCIENCE_TYPE explicit.
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 06 May 2012 19:17:04 +0200
parents 10d3db1f1e08
children 1e8f7e694f0c
line wrap: on
line diff
--- a/gamelib/research.py	Sun May 06 19:06:28 2012 +0200
+++ b/gamelib/research.py	Sun May 06 19:17:04 2012 +0200
@@ -1,6 +1,7 @@
 class ResearchArea(object):
     NAME = None
     PREREQUISITES = ()
+    SCIENCE_TYPE = 'research'
 
     def __init__(self, points=0):
         self.points = points