package org.leumasjaffe.charsheet; import org.leumasjaffe.charsheet.view.D20Sheet; import lombok.SneakyThrows; public class Test { @SneakyThrows public static void main(String[] args) { D20Sheet frame = new D20Sheet(); frame.pack(); frame.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } }