Added player and level and world objects.

This commit is contained in:
Sakse Dalum
2012-08-07 19:59:52 +02:00
parent c14c5e248e
commit dc5acdf4c6
7 changed files with 155 additions and 14 deletions

View File

@@ -25,5 +25,8 @@ A generic level.
"""
class Level(object):
def __init__(self, level_name):
self.__dict__.update(locals())
def update(self, e, t, dt):
pass
def draw(self, window):
pass