11package io .github .turtleisaac .pokeditor ;
22
3- import javax .swing .*;
4-
5- import com .formdev .flatlaf .extras .FlatUIDefaultsInspector ;
63import com .formdev .flatlaf .intellijthemes .*;
7- import com .formdev .flatlaf .intellijthemes .materialthemeuilite .FlatAtomOneLightIJTheme ;
8- import com .formdev .flatlaf .intellijthemes .materialthemeuilite .FlatLightOwlIJTheme ;
9- import com .formdev .flatlaf .intellijthemes .materialthemeuilite .FlatMaterialLighterIJTheme ;
10- import com .formdev .flatlaf .intellijthemes .materialthemeuilite .FlatSolarizedLightIJTheme ;
114import io .github .turtleisaac .nds4j .ui .ProgramType ;
125import io .github .turtleisaac .nds4j .ui .Tool ;
13- import io .github .turtleisaac .nds4j .ui .exceptions .ToolCreationException ;
146import io .github .turtleisaac .pokeditor .gui .PokeditorManager ;
157import io .github .turtleisaac .pokeditor .gui_old .projects .projectwindow .console .ConsoleWindow ;
168
179import java .io .IOException ;
1810import java .nio .charset .StandardCharsets ;
19- import java .util .Locale ;
20- import java .util .function .Supplier ;
2111
2212/**
2313 * @author turtleisaac
@@ -31,7 +21,6 @@ public class Main
3121
3222 public static void main (String [] args ) throws IOException
3323 {
34- FlatUIDefaultsInspector .install ( "ctrl shift alt Y" );
3524 String [] mainMenuJokes = new String (Main .class .getResourceAsStream (jokesPath ).readAllBytes (), StandardCharsets .UTF_8 ).split ("\n " );
3625
3726// Locale.setDefault(Locale.CHINA);
@@ -42,8 +31,8 @@ public static void main(String[] args) throws IOException
4231// .setFlavorText("Did you know that Jay likes Moemon?")
4332 .setFlavorText (mainMenuJokes [(int ) (Math .random ()*(mainMenuJokes .length ))])
4433 .setAuthor ("Developed by Turtleisaac" )
45- .addLookAndFeel (new FlatDarkPurpleIJTheme ())
4634 .addLookAndFeel (new FlatArcOrangeIJTheme ())
35+ .addLookAndFeel (new FlatDarkPurpleIJTheme ())
4736// .addLookAndFeel(new javax.swing.plaf.metal.MetalLookAndFeel())
4837 .addGame ("Pokémon Platinum" , "CPU" )
4938 .addGame ("Pokémon HeartGold" ,"IPK" )
0 commit comments