aboutsummaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorsowgro <tpoke.ferrari@gmail.com>2023-05-16 07:08:29 -0400
committersowgro <tpoke.ferrari@gmail.com>2023-05-16 07:08:29 -0400
commitf6685e0c93ed1f9ea5aab85f17d64ce93ffae6a9 (patch)
tree5b2fd0de9e8f79f8ca5b6b541a13f145c49d103d /src/gui
parent228091f5594c4c20e6c51682e487d8325a8a3230 (diff)
parent4c735b64005291173a324d555af6e8a9df8b939e (diff)
downloadNPEhero-f6685e0c93ed1f9ea5aab85f17d64ce93ffae6a9.tar.gz
NPEhero-f6685e0c93ed1f9ea5aab85f17d64ce93ffae6a9.tar.bz2
NPEhero-f6685e0c93ed1f9ea5aab85f17d64ce93ffae6a9.zip
Merge branch 'main' of https://gitlab.sowgro.net/guitarheros/guitarhero
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/JsonReader.java5
-rw-r--r--src/gui/JsonStructure.java5
-rw-r--r--src/gui/JsonValue.java9
-rw-r--r--src/gui/JsonWriter.java5
-rw-r--r--src/gui/SettingsController.java5
5 files changed, 29 insertions, 0 deletions
diff --git a/src/gui/JsonReader.java b/src/gui/JsonReader.java
new file mode 100644
index 0000000..b1da06f
--- /dev/null
+++ b/src/gui/JsonReader.java
@@ -0,0 +1,5 @@
+package gui;
+
+public interface JsonReader {
+
+}
diff --git a/src/gui/JsonStructure.java b/src/gui/JsonStructure.java
new file mode 100644
index 0000000..1ea2fa1
--- /dev/null
+++ b/src/gui/JsonStructure.java
@@ -0,0 +1,5 @@
+package gui;
+
+public interface JsonStructure {
+
+}
diff --git a/src/gui/JsonValue.java b/src/gui/JsonValue.java
new file mode 100644
index 0000000..e91f45b
--- /dev/null
+++ b/src/gui/JsonValue.java
@@ -0,0 +1,9 @@
+package gui;
+
+public interface JsonValue
+{
+ static JsonValue.ValueType getValueType()
+ {
+ return null;
+ }
+}
diff --git a/src/gui/JsonWriter.java b/src/gui/JsonWriter.java
new file mode 100644
index 0000000..04fae8e
--- /dev/null
+++ b/src/gui/JsonWriter.java
@@ -0,0 +1,5 @@
+package gui;
+
+public interface JsonWriter {
+
+}
diff --git a/src/gui/SettingsController.java b/src/gui/SettingsController.java
new file mode 100644
index 0000000..8898dc3
--- /dev/null
+++ b/src/gui/SettingsController.java
@@ -0,0 +1,5 @@
+package gui;
+
+public class SettingsController {
+
+}