(String[] args)
| 29 | |
| 30 | |
| 31 | public static void main(String[] args){ |
| 32 | GuiBase.setInterface(new GuiDesktop()); |
| 33 | FModel.initialize(null, preferences -> { |
| 34 | preferences.setPref(ForgePreferences.FPref.LOAD_CARD_SCRIPTS_LAZILY, false); |
| 35 | return null; |
| 36 | }); |
| 37 | initialize(); |
| 38 | } |
| 39 | |
| 40 | public static boolean initialize(){ |
| 41 | List<String> formatStrings = new ArrayList<>(); |
nothing calls this directly
no test coverage detected