export interface Vector3Dto { x: number; y: number; z: number; } export interface InventoryEntry { itemId: string; amount: number; }