edubrm/software/modules/module.py
2011-04-01 21:52:18 +02:00

9 lines
166 B
Python

class Module():
title = ''
def start(self, area):
raise Exception('not implemented')
def run(self):
raise Exception('not implemented')