mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 15:36:18 +00:00
🆙 Init V3
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { NitroEvent } from '@nitrots/nitro-renderer';
|
||||
|
||||
export class InventoryFurniAddedEvent extends NitroEvent
|
||||
{
|
||||
public static FURNI_ADDED: string = 'IFAE_FURNI_ADDED';
|
||||
|
||||
constructor(
|
||||
public readonly id: number,
|
||||
public readonly spriteId: number,
|
||||
public readonly category: number)
|
||||
{
|
||||
super(InventoryFurniAddedEvent.FURNI_ADDED);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
export * from './InventoryFurniAddedEvent';
|
||||
Reference in New Issue
Block a user