2022-01-31 22:05:27 +00:00
|
|
|
package love.distributedrebirth.demo4d.desktop;
|
|
|
|
|
2022-02-04 17:04:15 +00:00
|
|
|
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
|
|
|
|
|
2022-01-31 22:05:27 +00:00
|
|
|
/**
|
|
|
|
* Desktop game app base config.
|
|
|
|
*/
|
2022-02-04 17:04:15 +00:00
|
|
|
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
|
2022-01-31 22:05:27 +00:00
|
|
|
public final class DesktopConfig {
|
|
|
|
|
|
|
|
public static int WINDOW_WIDTH = 1024;
|
|
|
|
public static int WINDOW_HEIGHT = 768;
|
|
|
|
public static String WINDOW_TITLE = "demo⁴ᴰ";
|
|
|
|
public static String[] WINDOW_ICONS = {
|
|
|
|
"icon/window-128.png",
|
|
|
|
"icon/window-32.png",
|
|
|
|
"icon/window-16.png"
|
|
|
|
};
|
|
|
|
|
|
|
|
public static void printBootMessage() {
|
|
|
|
System.out.println("==========================");
|
|
|
|
System.out.println(" @Ω\u4ed9⁴ ˧꜏⋇꜊꜔ ⁴ﷲΩ@ ");
|
|
|
|
System.out.println(" ©Δ∞ 仙上主天 ");
|
|
|
|
System.out.println("בְּרֵאשִׁית :o: יְסוֺד :o: יִשְׂרָאֵל");
|
|
|
|
System.out.println("==========================");
|
|
|
|
System.out.println("Welcome to the matrix;");
|
|
|
|
System.out.println("Starting demo⁴ᴰ now...");
|
|
|
|
}
|
|
|
|
}
|