summaryrefslogtreecommitdiff
path: root/editor/editor-io.hpp
blob: 171b67c65bc9ac689873547f7f0cb0e7974152a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef PKE_EDITOR_EDITOR_IO_HPP
#define PKE_EDITOR_EDITOR_IO_HPP

#include "level-types.hpp"

void pke_editor_scene_save(const char *file_path);
void pke_editor_scene_load(pke_level *level, 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 */