mirror of
https://github.com/Relintai/mesh_data_resource.git
synced 2024-11-14 10:17:26 +01:00
26 lines
451 B
C++
26 lines
451 B
C++
|
|
#ifndef EDITOR_PLUGIN_COLLADA_MDR
|
|
#define EDITOR_PLUGIN_COLLADA_MDR
|
|
|
|
#include "editor/editor_plugin.h"
|
|
#include "core/ustring.h"
|
|
|
|
#include "editor_import_collada_mdr.h"
|
|
|
|
class EditorPluginColladaMdr : public EditorPlugin {
|
|
|
|
GDCLASS(EditorPluginColladaMdr, EditorPlugin);
|
|
|
|
public:
|
|
EditorPluginColladaMdr(EditorNode *node);
|
|
|
|
protected:
|
|
void _notification(int p_what);
|
|
|
|
private:
|
|
EditorNode *_node;
|
|
Ref<EditorImportColladaMdr> _importer;
|
|
};
|
|
|
|
#endif
|