mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-07 20:09:58 -05:00
Renamed OpenSpaceModule's initialize method to create
Created new initialize method that gets called in OpenSpaceEngine initialize
This commit is contained in:
@@ -55,8 +55,8 @@ BaseModule::BaseModule()
|
||||
: OpenSpaceModule("Base")
|
||||
{}
|
||||
|
||||
bool BaseModule::initialize() {
|
||||
bool success = OpenSpaceModule::initialize();
|
||||
bool BaseModule::create() {
|
||||
bool success = OpenSpaceModule::create();
|
||||
if (!success)
|
||||
return false;
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace openspace {
|
||||
class BaseModule : public OpenSpaceModule {
|
||||
public:
|
||||
BaseModule();
|
||||
bool initialize() override;
|
||||
bool create() override;
|
||||
};
|
||||
|
||||
} // namespace openspace
|
||||
|
||||
Reference in New Issue
Block a user