Skip to content

Commit

Permalink
Rename devue_model_col to devue_model_pack
Browse files Browse the repository at this point in the history
  • Loading branch information
dvsku committed Sep 23, 2024
1 parent e2fdd86 commit cf850d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/src/devue_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

Expand Down
4 changes: 2 additions & 2 deletions source/src/devue_plugin.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
}

Expand Down

0 comments on commit cf850d9

Please sign in to comment.