How to use the @casual-simulation/aux-vm.SimulationManager function in @casual-simulation/aux-vm

To help you get started, we’ve selected a few @casual-simulation/aux-vm examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github casual-simulation / aux / src / aux-server / aux-web / shared / AppManager.ts View on Github external
constructor() {
        this._progress = new BehaviorSubject(null);
        this._initOffline();
        this._simulationManager = new SimulationManager(id => {
            return new BotManager(this._user, id, this._config);
        });
        this._userSubject = new BehaviorSubject(null);
        this._db = new AppDatabase();
    }
github casual-simulation / aux / src / aux-server / aux-web / shared / AppManager.ts View on Github external
constructor() {
        this._progress = new BehaviorSubject(null);
        this._initOffline();
        this._simulationManager = new SimulationManager(id => {
            return new FileManager(this._user, id, this._config);
        });
        this._userSubject = new BehaviorSubject(null);
        this._db = new AppDatabase();
    }