diff options
| author | Juan Linietsky <reduzio@gmail.com> | 2017-09-15 13:45:03 -0300 |
|---|---|---|
| committer | Juan Linietsky <reduzio@gmail.com> | 2017-09-15 13:45:03 -0300 |
| commit | 25f742cc3d68693c51fbe84ce7bb633f4bb1ae04 (patch) | |
| tree | a17f78b6e45b370feed1dac2c7fa66dd48181169 /editor/editor_export.h | |
| parent | 6b729726e0c848e2a60eb72782315a883526c913 (diff) | |
| download | redot-engine-25f742cc3d68693c51fbe84ce7bb633f4bb1ae04.tar.gz | |
Added type on export file callback, and initial export function.
Diffstat (limited to 'editor/editor_export.h')
| -rw-r--r-- | editor/editor_export.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/editor/editor_export.h b/editor/editor_export.h index 6b8164681f..b6ea4fd889 100644 --- a/editor/editor_export.h +++ b/editor/editor_export.h @@ -240,14 +240,16 @@ class EditorExportPlugin : public Reference { skipped = false; } - void _export_file_script(const String &p_path, const PoolVector<String> &p_features); + void _export_file_script(const String &p_path, const String &p_type, const PoolVector<String> &p_features); + void _export_begin_script(const PoolVector<String> &p_features); protected: void add_file(const String &p_path, const Vector<uint8_t> &p_file, bool p_remap); void add_shared_object(const String &p_path); void skip(); - virtual void _export_file(const String &p_path, const Set<String> &p_features); + virtual void _export_file(const String &p_path, const String &p_type, const Set<String> &p_features); + virtual void _export_begin(const Set<String> &p_features); static void _bind_methods(); |
