checkComponentValidity
Why ?
When ?
Prototype
// .hpp
bool checkComponentValidity() override;
//.cpp
bool KapEngine::MyGame::MyComponent::checkComponentValidity() {
if (...) {
//my component should not start
return false;
}
//my component can start
return true;
}Check other component
Last updated