mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
23 lines
368 B
TypeScript
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: {},
|
|
};
|
|
},
|
|
});
|