# Main UI

Published 2024-01-30

# Directly usable functions and values

from src.mainUI import switchSelectedPlugin, resizeWindow, quit

# Should be in the following format "plugins.<pluginName>.main"
switchSelectedPlugin(pluginName:str)

# Will resize the window to the given size.
resizeWindow(newWidth:int, newHeight:int)

# Will quit the program.
quit()

# Description

This file contains the main UI for the program. It is responsible for creating the window and setting up the main UI elements.