blob: 134da6c23465d8f5ed647c5fea4a5fe3ceffda1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef EDITOR_EXPORT_SCENE_H
#define EDITOR_EXPORT_SCENE_H
#include "tools/editor/editor_import_export.h"
class EditorSceneExportPlugin : public EditorExportPlugin {
OBJ_TYPE( EditorSceneExportPlugin, EditorExportPlugin );
public:
virtual Vector<uint8_t> custom_export(String& p_path,const Ref<EditorExportPlatform> &p_platform);
EditorSceneExportPlugin();
};
#endif // EDITOR_EXPORT_SCENE_H
|