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

23 lines
368 B
TypeScript

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