add Dev Part

This commit is contained in:
2025-09-26 08:56:23 +02:00
parent e2d2e17407
commit 96b3c953f8
13 changed files with 266 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
package Part2;
public class ClickSwapImageEvent {
}

View File

@@ -0,0 +1,26 @@
import java.io.File;
import java.awt.CardLayout;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
public class ImageWindow extends JFrame {
private CardLayout card;
public ImageWindow() {
this.card = new CardLayout();
File resourcesDirectory = new File("../resources/");
if(resourcesDirectory.exists() && resourcesDirectory.isDirectory()) {
File[] files = resourcesDirectory.listFiles();
if(files != null) {
for(File file : files) {
}
}
}
}
}

View File

@@ -0,0 +1,5 @@
package Part2;
public class Main {
}