Files
Curse/packages/frontend/src/utility/room/objects/tabletopCalendar.ts
syuilo aae03a914d wip
2026-02-20 13:15:34 +09:00

22 lines
384 B
TypeScript

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