import { Engine } from "/Scripts/types/engine"; import { Hook } from "/Scripts/types/hook"; /** * The client-wide hooks */ export const clientHooks: Hook[] = [ { signal: "OPEN_VOXEL", callback: (engine: Engine) => { engine.classes.menuUtils.static.openVoxel() } } ]