scratch-vm/src/blocks/scratch3.js

15 lines
283 B
JavaScript
Raw Normal View History

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;