mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-21 12:15:31 +02:00
🍮
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -21,6 +21,7 @@ import { chair } from './objects/chair.js';
|
|||||||
import { coffeeCup } from './objects/coffeeCup.js';
|
import { coffeeCup } from './objects/coffeeCup.js';
|
||||||
import { colorBox } from './objects/colorBox.js';
|
import { colorBox } from './objects/colorBox.js';
|
||||||
import { cupNoodle } from './objects/cupNoodle.js';
|
import { cupNoodle } from './objects/cupNoodle.js';
|
||||||
|
import { custardPudding } from './objects/custardPudding.js';
|
||||||
import { debugHipoly } from './objects/debugHipoly.js';
|
import { debugHipoly } from './objects/debugHipoly.js';
|
||||||
import { desk } from './objects/desk.js';
|
import { desk } from './objects/desk.js';
|
||||||
import { desktopPc } from './objects/desktopPc.js';
|
import { desktopPc } from './objects/desktopPc.js';
|
||||||
@@ -91,6 +92,7 @@ export const OBJECT_DEFS = [
|
|||||||
coffeeCup,
|
coffeeCup,
|
||||||
colorBox,
|
colorBox,
|
||||||
cupNoodle,
|
cupNoodle,
|
||||||
|
custardPudding,
|
||||||
desk,
|
desk,
|
||||||
desktopPc,
|
desktopPc,
|
||||||
ductTape,
|
ductTape,
|
||||||
|
|||||||
21
packages/frontend/src/utility/room/objects/custardPudding.ts
Normal file
21
packages/frontend/src/utility/room/objects/custardPudding.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
||||||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { defineObject } from '../engine.js';
|
||||||
|
|
||||||
|
export const custardPudding = defineObject({
|
||||||
|
id: 'custardPudding',
|
||||||
|
name: 'custardPudding',
|
||||||
|
options: {
|
||||||
|
schema: {},
|
||||||
|
default: {},
|
||||||
|
},
|
||||||
|
placement: 'top',
|
||||||
|
createInstance: () => {
|
||||||
|
return {
|
||||||
|
interactions: {},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user