original commit

This commit is contained in:
2024-06-23 01:39:58 +02:00
commit 40dc71ab03
15 changed files with 134 additions and 0 deletions

17
src/View.java Normal file
View File

@@ -0,0 +1,17 @@
import javax.swing.*;
import java.awt.*;
import java.awt.event.MouseAdapter;
public class View extends JFrame {
public View(){
setLocationRelativeTo(null);
setSize(new Dimension(1920, 1080));
CustomPanel p = new CustomPanel();
CustomListener c = new CustomListener();
add(p);
setDefaultCloseOperation(EXIT_ON_CLOSE);
}
}