From 726f8a643c0aeff2b466437a88be76f77c92cb73 Mon Sep 17 00:00:00 2001 From: pixelzoom Date: Wed, 15 Feb 2023 13:22:11 -0700 Subject: [PATCH] add missing Screen parameterization, add missing 'implements TModel', https://github.com/phetsims/joist/issues/886 --- js/vegas-main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/vegas-main.ts b/js/vegas-main.ts index d56a222..681f7e0 100644 --- a/js/vegas-main.ts +++ b/js/vegas-main.ts @@ -15,6 +15,7 @@ import FiniteChallengesScreenView from './demo/FiniteChallengesScreenView.js'; import InfiniteChallengesScreenView from './demo/InfiniteChallengesScreenView.js'; import VegasStrings from './VegasStrings.js'; import ComponentsScreenView from './demo/components/ComponentsScreenView.js'; +import TModel from '../../joist/js/TModel.js'; // constants const vegasTitleStringProperty = VegasStrings.vegas.titleStringProperty; @@ -25,7 +26,7 @@ const simOptions: SimOptions = { } }; -class VegasModel { +class VegasModel implements TModel { public reset(): void { /* nothing to do */ } }