Renderer/assets/Scripts/client/entity/inventory.ts
austin 4c65b59b1b
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
script work, player weapon on level edit
2024-08-25 12:08:14 -04:00

24 lines
397 B
TypeScript

import { Entity } from "/Scripts/types/host/entity/entity"
/**
* A type of entity
*/
export type Item = Entity
export interface Inventory {
}
/**
* Fires any time an item changes containers
*/
export const SIGNAL_MOVE_ITEM: string = "moveItem"
/**
* A callback that fires when an item is moved from one container to another
*/
export type MoveItemCallback = (item: Item) => void