6 lines
236 B
TypeScript
6 lines
236 B
TypeScript
|
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) {}
|
||
|
}
|