blob: 07e9354c0ab45a4c69fbe28f39366ff352a62b96 (
plain)
1
2
3
4
5
6
7
8
9
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 */
|