######################################## ## Programming project code ## UniBw M, 2022, 2023, 2024 ## www.unibw.de/inf2 ## (c) Mark Minas (mark.minas@unibw.de) ######################################## # # Monopoly client configuration # # The dimensions of the game map used in single mode. # 'map.width' defines the number of columns, and 'map.height' defines the number of rows. map.width=10 map.height=10 # # # Screen settings # # Color of the text displayed at the top of the overlay. # The format is (red, green, blue, alpha) where each value ranges from 0 to 1. overlay.top.color=1, 1, 1, 1 # # Application settings configuration # Determines whether the settings window is shown at startup. settings.show=false # # Specifies the width of the application window in pixels. settings.resolution.width=1920 # # Specifies the height of the application window in pixels. settings.resolution.height=1080 # # Determines whether the application runs in full-screen mode. settings.full-screen=false # # Enables or disables gamma correction to improve color accuracy. settings.use-gamma-correction=true # # Indicates whether the statistics window is displayed during gameplay. statistics.show=false