diff --git a/Adventure Game/adventure_game/main.py b/Adventure Game/adventure_game/main.py index 741a2e1..286b32d 100644 --- a/Adventure Game/adventure_game/main.py +++ b/Adventure Game/adventure_game/main.py @@ -32,6 +32,10 @@ class AdventureGame(npyscreen.NPSAppManaged): # dimensions['inventory_width']+dimensions['art_width'], # 30)) # TODO: Finish setting this up. + # Set theme + #TODO: modify custom theme? + npyscreen.setTheme(npyscreen.Themes.ElegantTheme) + # Draw game windows 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