1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 07:04:05 +02:00
Files
misskey/packages/frontend/src/utility/room/objects/hangingTShirt.ts
syuilo 36438e85d1 wip
2026-03-01 21:57:53 +09:00

22 lines
377 B
TypeScript

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