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):
LoadGameEvent.post(None)
SceneChangeEvent.post(MenuScene)
return
-