Test.java 343 B

1234567891011121314151617
  1. package org.leumasjaffe.charsheet;
  2. import org.leumasjaffe.charsheet.view.D20Sheet;
  3. import lombok.SneakyThrows;
  4. public class Test {
  5. @SneakyThrows
  6. public static void main(String[] args) {
  7. D20Sheet frame = new D20Sheet();
  8. frame.pack();
  9. frame.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
  10. frame.setVisible(true);
  11. }
  12. }