runAction method

  1. @override
bool runAction(
  1. double dt,
  2. BonfireGameInterface game
)
override

Implementation

@override
bool runAction(double dt, BonfireGameInterface game) {
  if (_isFirstRun) {
    _isFirstRun = false;
    completedCallback(() => _isDone = true);
  }
  return _isDone;
}