/* * SPDX-FileCopyrightText: syuilo and misskey-project * SPDX-License-Identifier: AGPL-3.0-only */ import { defineObject } from '../engine.js'; export const tetrapod = defineObject({ id: 'tetrapod', name: '波消ブロック', options: { schema: {}, default: {}, }, placement: 'top', createInstance: () => { return { interactions: {}, }; }, });