diff --git a/build/classes/java/main/controller/SettingsController.class b/build/classes/java/main/controller/SettingsController.class
new file mode 100644
index 0000000000000000000000000000000000000000..1b434a4e40460f52ce64d262cb01216682f498ff
Binary files /dev/null and b/build/classes/java/main/controller/SettingsController.class differ
diff --git a/build/resources/main/view/Settings.fxml b/build/resources/main/view/Settings.fxml
new file mode 100644
index 0000000000000000000000000000000000000000..71254c0a3ee78ade5fa70ae154f1f8f02aec4d14
--- /dev/null
+++ b/build/resources/main/view/Settings.fxml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<?import javafx.scene.control.Label?>
+<?import javafx.scene.control.Spinner?>
+<?import javafx.scene.layout.GridPane?>
+
+<GridPane xmlns:fx="http://javafx.com/fxml"
+          fx:controller="controller.SettingsController" alignment="center" hgap="10" vgap="10" padding="20">
+    <Label text="Settings" style="-fx-font-size: 16;" GridPane.columnIndex="0" GridPane.rowIndex="0" GridPane.columnSpan="2"/>
+
+    <!-- Row Count -->
+    <Label text="Row Count:" GridPane.columnIndex="0" GridPane.rowIndex="1"/>
+    <Spinner fx:id="rowCountSpinner" value="10" min="1" max="100" GridPane.columnIndex="1" GridPane.rowIndex="1"/>
+
+    <!-- Column Count -->
+    <Label text="Column Count:" GridPane.columnIndex="0" GridPane.rowIndex="2"/>
+    <Spinner fx:id="columnCountSpinner" value="10" min="1" max="100" GridPane.columnIndex="1" GridPane.rowIndex="2"/>
+</GridPane>
diff --git a/build/tmp/compileJava/compileTransaction/stash-dir/SimulatorApplication.class.uniqueId0 b/build/tmp/compileJava/compileTransaction/stash-dir/SimulatorApplication.class.uniqueId0
new file mode 100644
index 0000000000000000000000000000000000000000..44358f3c84267da03fa9cee5179f4da994c8ad65
Binary files /dev/null and b/build/tmp/compileJava/compileTransaction/stash-dir/SimulatorApplication.class.uniqueId0 differ
diff --git a/build/tmp/compileJava/compileTransaction/stash-dir/SimulatorMain.class.uniqueId1 b/build/tmp/compileJava/compileTransaction/stash-dir/SimulatorMain.class.uniqueId1
new file mode 100644
index 0000000000000000000000000000000000000000..4530cc2971636d0c78bcf91139a4f699c2f20eb4
Binary files /dev/null and b/build/tmp/compileJava/compileTransaction/stash-dir/SimulatorMain.class.uniqueId1 differ