aboutsummaryrefslogtreecommitdiff
path: root/src/gui/JsonValue.java
diff options
context:
space:
mode:
authorZach Jordan <zjordan58@fairport.org>2023-05-15 08:52:44 -0400
committerZach Jordan <zjordan58@fairport.org>2023-05-15 08:52:44 -0400
commit4c735b64005291173a324d555af6e8a9df8b939e (patch)
tree80dea13a412e7334c90a1345c073fa2684d7745f /src/gui/JsonValue.java
parent4a1f4a98116b5c59efe0606375b833a722a0d281 (diff)
downloadNPEhero-4c735b64005291173a324d555af6e8a9df8b939e.tar.gz
NPEhero-4c735b64005291173a324d555af6e8a9df8b939e.tar.bz2
NPEhero-4c735b64005291173a324d555af6e8a9df8b939e.zip
The rabbithole continues, hopefully this doesnt take the whole week.
Diffstat (limited to '')
-rw-r--r--src/gui/JsonValue.java9
1 files changed, 9 insertions, 0 deletions
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;
+ }
+}