File for global gui constants.

This commit is contained in:
WickedJack99
2023-11-01 20:53:14 +01:00
parent fcb028014a
commit 544a3fd9b3

View File

@@ -0,0 +1,36 @@
/**
* @author Aaron Moser
* @date 31.10.2023
*/
package gui.src.constants;
public class GUIConstants {
/**
* Represents kinds of frames.
*/
public static enum Frame {
MainFrame,
}
/**
* Represents kinds of panels.
*/
public static enum Panel {
MonitoringPanel,
ControllingPanel
}
/**
* Represents kinds of themes.
*/
public static enum Theme {
Dark,
Light
}
public static enum Languages {
German,
English
}
}