comparison gamelib/main.py @ 26:0a68d137f509

Initial inventory palette thing.
author Jeremy Thurgood <firxen@gmail.com>
date Sun, 22 Aug 2010 18:38:56 +0200
parents f9e697e0c6ba
children 0f25f7b9b37a
comparison
equal deleted inserted replaced
25:f9e697e0c6ba 26:0a68d137f509
2 2
3 Contains the entry point used by the run_game.py script. 3 Contains the entry point used by the run_game.py script.
4 4
5 ''' 5 '''
6 6
7 import data
8
9 import pygame 7 import pygame
10 from pygame.locals import SWSURFACE, SRCALPHA 8 from pygame.locals import SWSURFACE, SRCALPHA
11 from albow.dialogs import alert 9 from albow.dialogs import alert
12 from albow.shell import Shell 10 from albow.shell import Shell
11
12 import data
13 from menu import MenuScreen 13 from menu import MenuScreen
14 from gamescreen import GameScreen 14 from gamescreen import GameScreen
15 from constants import SCREEN 15 from constants import SCREEN
16 16
17 class MainShell(Shell): 17 class MainShell(Shell):