Path: blob/main/extensions/copilot/test/simulation/workbench/stores/nesExternalOptions.ts
13399 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { SimulationStorage, SimulationStorageValue } from './simulationStorage';67/**8* Persisted options for NES External mode in the simulation workbench.9*/10export class NesExternalOptions {1112/**13* Path to the directory containing NES external scenarios (e.g., `../eval/simulation/nes`).14*/15public readonly externalScenariosPath: SimulationStorageValue<string>;1617constructor(storage: SimulationStorage) {18this.externalScenariosPath = new SimulationStorageValue(storage, 'nesExternalScenariosPath', '');19}20}212223