From 8b3dba02cc5e512afb17219a3fe4a8e2a9bc8aae Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Mon, 22 Feb 2021 19:46:39 -0500 Subject: [PATCH] Experiment with themes --- Adventure Game/adventure_game/main.py | 4 ++++ 1 file changed, 4 insertions(+) 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