mc-beta-server/server/blocks/IBlockBehaviour.ts

5 lines
157 B
TypeScript
Raw Normal View History

2023-08-20 01:17:05 +01:00
import { World } from "../World";
export interface IBlockBehaviour {
neighborBlockChange(world:World, x:number, y:number, z:number, blockId:number): void
}