diff --git a/js/common/view/RAPScreenView.ts b/js/common/view/RAPScreenView.ts index 3b8f72be..1ba09cfc 100644 --- a/js/common/view/RAPScreenView.ts +++ b/js/common/view/RAPScreenView.ts @@ -482,6 +482,33 @@ class RAPScreenView extends ScreenView { this.inProportionSoundGenerator.step( dt ); this.staccatoFrequencySoundGenerator.step( dt ); } + + /** + * To support voicing. + * @override + * @public + */ + public getVoicingOverviewContent(): string { + return 'This has not been implemented yet'; + } + + /** + * To support voicing. + * @override + * @public + */ + public getVoicingDetailsContent(): string { + return 'This has not been implemented yet'; + } + + /** + * To support voicing. + * @override + * @public + */ + public getVoicingHintContent(): string { + return 'This has not been implemented yet'; + } } ratioAndProportion.register( 'RAPScreenView', RAPScreenView );