runAction method
Implementation
@override
bool runAction(double dt, GameComponent comp, BonfireGameInterface game) {
final current = behaviors[_currentIdex];
if (current.runAction(dt, comp, game)) {
_currentIdex++;
}
return _currentIdex >= behaviors.length;
}