8 lines
No EOL
214 B
TypeScript
8 lines
No EOL
214 B
TypeScript
import Block from "./Block";
|
|
import BlockBehaviour from "./BlockBehaviour";
|
|
|
|
export default class BlockBehaviourGrass extends BlockBehaviour {
|
|
public droppedItem(blockId:number) {
|
|
return Block.dirt.blockId;
|
|
}
|
|
} |