mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Add some names
This commit is contained in:
parent
26067a9287
commit
1503b0add9
1 changed files with 14 additions and 0 deletions
|
@ -23,6 +23,20 @@ const DirectionOptionsMenu = ['x', 'y', 'z'];
|
||||||
*/
|
*/
|
||||||
class Scratch3GoForceBlocks {
|
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.
|
* Construct a set of GoForce blocks.
|
||||||
* @param {Runtime} runtime - the Scratch 3.0 runtime.
|
* @param {Runtime} runtime - the Scratch 3.0 runtime.
|
||||||
|
|
Loading…
Reference in a new issue