mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
Only make an internalInitialize in OpenSpaceModule that accepts a ghoul::Dictionary
This commit is contained in:
@@ -35,9 +35,10 @@
|
||||
namespace openspace {
|
||||
|
||||
FieldlinesSequenceModule::FieldlinesSequenceModule()
|
||||
: OpenSpaceModule("FieldlinesSequence") {}
|
||||
: OpenSpaceModule("FieldlinesSequence")
|
||||
{}
|
||||
|
||||
void FieldlinesSequenceModule::internalInitialize() {
|
||||
void FieldlinesSequenceModule::internalInitialize(const ghoul::Dictionary&) {
|
||||
auto factory = FactoryManager::ref().factory<Renderable>();
|
||||
ghoul_assert(factory, "No renderable factory existed");
|
||||
|
||||
|
||||
@@ -33,8 +33,8 @@ class FieldlinesSequenceModule : public OpenSpaceModule {
|
||||
public:
|
||||
FieldlinesSequenceModule();
|
||||
|
||||
protected:
|
||||
void internalInitialize() override;
|
||||
private:
|
||||
void internalInitialize(const ghoul::Dictionary&) override;
|
||||
};
|
||||
|
||||
} // namespace openspace
|
||||
|
||||
Reference in New Issue
Block a user