mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-25 17:10:43 +00:00
16 lines
399 B
TypeScript
16 lines
399 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { defineFurniture } from '../furniture.js';
|
|
import { coffeeCup_schema } from 'misskey-world/src/room/furnitures/coffeeCup.schema.js';
|
|
|
|
export const coffeeCup = defineFurniture(coffeeCup_schema, {
|
|
createInstance: () => {
|
|
return {
|
|
interactions: {},
|
|
dispose: () => {},
|
|
};
|
|
},
|
|
});
|