Browse Source

Add Module::getExpander().

tags/v2.0.0
Andrew Belt 3 years ago
parent
commit
f5781b3b56
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      include/engine/Module.hpp

+ 3
- 0
include/engine/Module.hpp View File

@@ -277,6 +277,9 @@ struct Module {
Expander& getRightExpander() {
return rightExpander;
}
Expander& getExpander(bool side) {
return side ? rightExpander : leftExpander;
}

// Virtual methods



Loading…
Cancel
Save