loadReplayScenarioActionCount method
Load a replay scenario and return its action count.
Implementation
Future<int> loadReplayScenarioActionCount(String scenarioPath) async {
final scenario = await ReplayScenario.load(scenarioPath);
return scenario.actions.length;
}