adventure-game #3

Open
Kenwood wants to merge 80 commits from adventure-game into master
1 changed files with 4 additions and 0 deletions
Showing only changes of commit 8b3dba02cc - Show all commits

View File

@ -32,6 +32,10 @@ class AdventureGame(npyscreen.NPSAppManaged):
# dimensions['inventory_width']+dimensions['art_width'], # dimensions['inventory_width']+dimensions['art_width'],
# 30)) # TODO: Finish setting this up. # 30)) # TODO: Finish setting this up.
# Set theme
#TODO: modify custom theme?
npyscreen.setTheme(npyscreen.Themes.ElegantTheme)
# Draw game windows # Draw game windows
self.addForm('GAME', GameNavigator, name='Unnamed Adventure Game') # This window should draw the actual game self.addForm('GAME', GameNavigator, name='Unnamed Adventure Game') # This window should draw the actual game
self.addForm('MENU', MainMenu, name='Welcome to the main menu') # This window should draw the main menu self.addForm('MENU', MainMenu, name='Welcome to the main menu') # This window should draw the main menu