diff --git a/source/src/devue_plugin.cpp b/source/src/devue_plugin.cpp index b05ade0..5903e9d 100644 --- a/source/src/devue_plugin.cpp +++ b/source/src/devue_plugin.cpp @@ -30,7 +30,7 @@ devue_plugin::devue_plugin() { } // Implement model importing -devue::sdk::devue_model_col devue_plugin::impl_import_model(const std::filesystem::path& filepath) { +devue::sdk::devue_model_pack devue_plugin::impl_import_model(const std::filesystem::path& filepath) { throw std::runtime_error("Not implemented"); } diff --git a/source/src/devue_plugin.hpp b/source/src/devue_plugin.hpp index b615044..c175bed 100644 --- a/source/src/devue_plugin.hpp +++ b/source/src/devue_plugin.hpp @@ -8,8 +8,8 @@ namespace devue::plugins { devue_plugin(); protected: - devue::sdk::devue_model_col impl_import_model(const std::filesystem::path& filepath); - devue::sdk::devue_image impl_import_image(const std::filesystem::path& filepath); + devue::sdk::devue_model_pack impl_import_model(const std::filesystem::path& filepath); + devue::sdk::devue_image impl_import_image(const std::filesystem::path& filepath); }; }