this repo has no description
1// priority: 0
2
3console.info('Hello, World! (You will only see this line once in console, during startup)')
4
5onEvent('item.registry', event => {
6 // Register new items here
7 // event.create('example_item').displayName('Example Item')
8})
9
10onEvent('block.registry', event => {
11 // Register new blocks here
12 // event.create('example_block').material('wood').hardness(1.0).displayName('Example Block')
13})