2023-08-20 01:17:05 +01:00
|
|
|
import { World } from "../World";
|
|
|
|
import { IBlockBehaviour } from "./IBlockBehaviour";
|
|
|
|
|
|
|
|
export class BlockBehaviour implements IBlockBehaviour {
|
|
|
|
public neighborBlockChange(world:World, x:number, y:number, z:number, blockId:number) {}
|
2023-11-02 08:31:43 +00:00
|
|
|
public droppedItem(blockId:number) { return blockId; }
|
2023-08-20 01:17:05 +01:00
|
|
|
}
|