diff --git a/src/extensions/scratch3_goforce/index.js b/src/extensions/scratch3_goforce/index.js index d7ae9b65b..02d1b6483 100644 --- a/src/extensions/scratch3_goforce/index.js +++ b/src/extensions/scratch3_goforce/index.js @@ -23,6 +23,20 @@ const DirectionOptionsMenu = ['x', 'y', 'z']; */ class Scratch3GoForceBlocks { + /** + * @return {string} - the name of this extension. + */ + static get EXTENSION_NAME () { + return 'Go!Force'; + } + + /** + * @return {string} - the ID of this extension. + */ + static get EXTENSION_ID () { + return 'goforce'; + } + /** * Construct a set of GoForce blocks. * @param {Runtime} runtime - the Scratch 3.0 runtime.