mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-06-27 06:40:28 -04:00
15 lines
283 B
JavaScript
15 lines
283 B
JavaScript
|
|
||
|
function Scratch3Blocks() {
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieve the block primitives implemented by this package.
|
||
|
* @return {Object.<string, Function>} Mapping of opcode to Function.
|
||
|
*/
|
||
|
Scratch3Blocks.prototype.getPrimitives = function() {
|
||
|
return {
|
||
|
};
|
||
|
};
|
||
|
|
||
|
module.exports = Scratch3Blocks;
|