16 lines
272 B
Python
16 lines
272 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
from settings import *
|
||
|
from world import World
|
||
|
|
||
|
|
||
|
class Scene:
|
||
|
def __init__(self, app):
|
||
|
self.app = app
|
||
|
self.world = World(self.app)
|
||
|
|
||
|
def update(self):
|
||
|
self.world.update()
|
||
|
|
||
|
def render(self):
|
||
|
self.world.render()
|