mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-22 19:29:04 -05:00
Only make an internalInitialize in OpenSpaceModule that accepts a ghoul::Dictionary
This commit is contained in:
@@ -35,7 +35,7 @@ namespace openspace {
|
||||
|
||||
FieldlinesModule::FieldlinesModule() : OpenSpaceModule(Name) {}
|
||||
|
||||
void FieldlinesModule::internalInitialize() {
|
||||
void FieldlinesModule::internalInitialize(const ghoul::Dictionary&) {
|
||||
auto fRenderable = FactoryManager::ref().factory<Renderable>();
|
||||
ghoul_assert(fRenderable, "No renderable factory existed");
|
||||
|
||||
|
||||
@@ -36,7 +36,7 @@ public:
|
||||
FieldlinesModule();
|
||||
|
||||
protected:
|
||||
void internalInitialize() override;
|
||||
void internalInitialize(const ghoul::Dictionary&) override;
|
||||
};
|
||||
|
||||
} // namespace openspace
|
||||
|
||||
Reference in New Issue
Block a user