diff --git a/OOPP 43 In the beginning there was_/.idea/encodings.xml b/OOPP 43 In the beginning there was_/.idea/encodings.xml
deleted file mode 100644
index 15a15b2..0000000
--- a/OOPP 43 In the beginning there was_/.idea/encodings.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/OOPP 43 In the beginning there was_/.idea/misc.xml b/OOPP 43 In the beginning there was_/.idea/misc.xml
deleted file mode 100644
index bfbb0ff..0000000
--- a/OOPP 43 In the beginning there was_/.idea/misc.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/OOPP 43 In the beginning there was_/.idea/modules.xml b/OOPP 43 In the beginning there was_/.idea/modules.xml
deleted file mode 100644
index 1a37cd5..0000000
--- a/OOPP 43 In the beginning there was_/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/OOPP 43 In the beginning there was_/.idea/vcs.xml b/OOPP 43 In the beginning there was_/.idea/vcs.xml
deleted file mode 100644
index 6c0b863..0000000
--- a/OOPP 43 In the beginning there was_/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/OOPP 43 In the beginning there was_/.idea/workspace.xml b/OOPP 43 In the beginning there was_/.idea/workspace.xml
deleted file mode 100644
index d45d0f0..0000000
--- a/OOPP 43 In the beginning there was_/.idea/workspace.xml
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1550495411207
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/OOPP 43 In the beginning there was_/OOPP 43 In the beginning there was_.iml b/OOPP 43 In the beginning there was_/OOPP 43 In the beginning there was_.iml
deleted file mode 100644
index c90834f..0000000
--- a/OOPP 43 In the beginning there was_/OOPP 43 In the beginning there was_.iml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/OOPP 43 In the beginning there was_/out/production/OOPP 43 In the beginning there was_/Main.class b/OOPP 43 In the beginning there was_/out/production/OOPP 43 In the beginning there was_/Main.class
deleted file mode 100644
index b719d34..0000000
Binary files a/OOPP 43 In the beginning there was_/out/production/OOPP 43 In the beginning there was_/Main.class and /dev/null differ
diff --git a/OOPP 43 In the beginning there was_/src/Main.java b/OOPP 43 In the beginning there was_/src/Main.java
deleted file mode 100644
index d77de4e..0000000
--- a/OOPP 43 In the beginning there was_/src/Main.java
+++ /dev/null
@@ -1,60 +0,0 @@
-import javafx.application.Application;
-import javafx.event.ActionEvent;
-import javafx.event.EventHandler;
-import javafx.scene.Scene;
-import javafx.scene.control.Button;
-import javafx.scene.layout.StackPane;
-import javafx.stage.Stage;
-
-//MAIN CLIENT
-
-public class Main {
- public static void main(String[] args){
-
- System.out.println("Hello World!");
- }
-}
-
-//COMMENT THE "MAIN CLIENT" PART OUT AND UNCOMMENT THE "JAVAFX" PART TO TEST IF JAVAFX WORKS
-//Don't uncomment the imports pls :)
-
-//JAVAFX
-
-//public class Main extends Application {
-//
-// @Override
-// public void start(Stage primaryStage) {
-// Button btn = new Button();
-// btn.setText("Say 'Hello World'");
-// btn.setOnAction(new EventHandler() {
-//
-// @Override
-// public void handle(ActionEvent event) {
-// System.out.println("Hello World!");
-// }
-// });
-//
-// Button btn2 = new Button();
-// btn2.setText("Say something else!");
-// btn2.setOnAction(new EventHandler() {
-// @Override
-// public void handle(ActionEvent event) {
-// System.out.println("something else!");
-// }
-// });
-//
-// StackPane root = new StackPane();
-// //apparently root.getchildren.add does the same as document.ready in javascript
-// root.getChildren().add(btn);
-//
-// Scene scene = new Scene(root, 500, 250);
-//
-// primaryStage.setTitle("Hello World!");
-// primaryStage.setScene(scene);
-// primaryStage.show();
-// }
-//
-// public static void main(String[] args) {
-// launch(args);
-// }
-//}