LIB: Updated code to lastest nx01 JPP abacus code

This commit is contained in:
Willem Cazander 2025-09-27 19:06:30 +02:00
parent 614bf64a8d
commit da074f283b
7 changed files with 60 additions and 55 deletions

View file

@ -39,15 +39,19 @@ import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAu
public final class GDXAppDesktopConfig {
protected static final Logger LOG = LoggerFactory.getLogger(GDXAppDesktopConfig.class);
public static int WINDOW_WIDTH = 1024;
public static int WINDOW_HEIGHT = 768;
public static String WINDOW_TITLE = "GDXApp⁴ᴰ";
public static String[] WINDOW_ICONS = {
public static final String THREAD_NAME = "main";
public static final int WINDOW_WIDTH = 1024;
public static final int WINDOW_HEIGHT = 768;
public static final String WINDOW_TITLE = "GDXApp⁴ᴰ";
public static final String[] WINDOW_ICONS = {
"icon/window-128.png",
"icon/window-32.png",
"icon/window-16.png"
};
private GDXAppDesktopConfig() {
}
public static void printBootMessage() {
LOG.info("==========================");
LOG.info(" @Ω仙⁴ ˧꜏⋇꜊꜔ ⁴ﷲΩ@ ");

View file

@ -46,7 +46,11 @@ import ᒢᐩᐩ.ᔆʸᔆᐪᓫᔿ.ꕢꕌꔳꕺꖃꕯꕮꕊ;
* Desktop GDXApp launcher.
*/
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
public class GDXAppDesktopLauncher {
public final class GDXAppDesktopLauncher {
private GDXAppDesktopLauncher() {
Thread.currentThread().setName(GDXAppDesktopConfig.THREAD_NAME);
}
public static void main(String[] args) {
GDXAppDesktopLauncher launcher = new GDXAppDesktopLauncher();