mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 15:36:18 +00:00
🆙 Added delete Furni / Pets in inventory
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { NitroEvent } from '@nitrots/nitro-renderer';
|
||||
import { FurnitureItem } from '../../api';
|
||||
|
||||
export class DeleteItemConfirmEvent extends NitroEvent
|
||||
{
|
||||
public static DELETE_ITEM_CONFIRM: string = 'DICE_DELETE_ITEM_CONFIRM';
|
||||
|
||||
constructor(
|
||||
public readonly item: FurnitureItem,
|
||||
public readonly amount: number)
|
||||
{
|
||||
super(DeleteItemConfirmEvent.DELETE_ITEM_CONFIRM);
|
||||
}
|
||||
}
|
||||
@@ -1 +1,2 @@
|
||||
export * from './DeleteItemConfirmEvent';
|
||||
export * from './InventoryFurniAddedEvent';
|
||||
|
||||
Reference in New Issue
Block a user