summaryrefslogtreecommitdiff
path: root/editor/editor-io.hpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-04-02 20:46:41 -0400
committerJonathan Bradley <jcb@pikum.xyz>2025-04-02 20:46:41 -0400
commita02c7589c6c9e902c59a632aa650635336fe648c (patch)
tree8ec4800ff9f9effbd9141e02131123448679bc93 /editor/editor-io.hpp
parentfad302f7db146a78900f9b21dbbcd97761093c1b (diff)
pke: checkpoint: major serialization refactor
Diffstat (limited to 'editor/editor-io.hpp')
-rw-r--r--editor/editor-io.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/editor/editor-io.hpp b/editor/editor-io.hpp
new file mode 100644
index 0000000..07e9354
--- /dev/null
+++ b/editor/editor-io.hpp
@@ -0,0 +1,10 @@
+#ifndef PKE_EDITOR_EDITOR_IO_HPP
+#define PKE_EDITOR_EDITOR_IO_HPP
+
+void pke_editor_scene_save(const char *file_path);
+void pke_editor_scene_load(const char *file_path);
+
+void pke_editor_project_save(const char *file_path);
+void pke_editor_project_load(const char *file_path);
+
+#endif /* PKE_EDITOR_EDITOR_IO_HPP */