Beispiel #1
0
def init():
    particle.init()

    render.add_screen_sprites(cursor, cursor.hover_text)

    map.load_map("2")

    camera.init(map.width(), map.height())
Beispiel #2
0
def init():
    particle.init()

    render.add_screen_sprites(cursor, cursor.hover_text)

    map.load_map("2")

    camera.init(map.width(), map.height())
Beispiel #3
0
 def __init__(self, position):
     Sprite.__init__(self, position)
     # add to render and examine lists
     render.add_screen_sprites(self)
     examine.add_screen_object(self)