Renderer/assets/Scripts/client/entity/inventory.ts
austin 068f3979b8
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
hookmanager in scriptengine, upgrade to junit 5
2024-07-12 17:56:23 -04:00

24 lines
393 B
TypeScript

import { Entity } from "/Scripts/engine/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