summaryrefslogtreecommitdiff
path: root/scripts/Utils/ISaveable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Utils/ISaveable.cs')
-rw-r--r--scripts/Utils/ISaveable.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/Utils/ISaveable.cs b/scripts/Utils/ISaveable.cs
new file mode 100644
index 0000000..12f5784
--- /dev/null
+++ b/scripts/Utils/ISaveable.cs
@@ -0,0 +1,9 @@
+
+using Godot;
+
+public interface ISaveable
+{
+ public Godot.Collections.Dictionary<string, Variant> GetSaveData();
+
+ public bool LoadSaveData(Godot.Collections.Dictionary<string, Variant> saveData);
+} \ No newline at end of file