Skip to content

Instantly share code, notes, and snippets.

@nakasyou
Last active August 18, 2023 08:30
Show Gist options
  • Save nakasyou/a09a519a6af7434ccafb32c9b511e772 to your computer and use it in GitHub Desktop.
Save nakasyou/a09a519a6af7434ccafb32c9b511e772 to your computer and use it in GitHub Desktop.
aa
class Test {
constructor() {}
getInfo() {
return {
id: 'test',
name: 'Test',
blocks: [
{
opcode: 'hello',
blockType: Scratch.BlockType.COMMAND,
text: '💩'
}
]
}
}
hello() {
alert('hello')
}
}
Scratch.extensions.register(new Test());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment