X-Git-Url: https://git.ctpug.org.za/?a=blobdiff_plain;f=naja%2Fscenes%2Fdummygame.py;h=f77fff96e1a38dd469b5d68d74bdac6591b16984;hb=de03276f181428cb1c7258428add770dc4c0ecfd;hp=077c07bfa478f65d6e608875b7cf241b41721146;hpb=cb722a960176f4ebd0b0769c1f017ae2c32d52f8;p=naja.git diff --git a/naja/scenes/dummygame.py b/naja/scenes/dummygame.py index 077c07b..f77fff9 100644 --- a/naja/scenes/dummygame.py +++ b/naja/scenes/dummygame.py @@ -5,14 +5,12 @@ Dummy scene that overlays a static rendering of a a game scene import pygame.locals as pgl import pygame -from naja.constants import KEYS, PALETTE, SCREEN +from naja.constants import SCREEN, KEYS from naja.events import SceneChangeEvent, LoadGameEvent -from naja.sound import sound from naja.scenes.scene import Scene from naja.scenes.game import GameScene from naja.gamestate import GameState from naja.widgets.image_box import PreRenderedImageBox -from naja.widgets.text import TextWidget, TextBoxWidget class DummyGameScene(Scene): @@ -38,4 +36,3 @@ class DummyGameScene(Scene): LoadGameEvent.post(None) SceneChangeEvent.post(MenuScene) return -