import playerImage from '../../assets/entities/player.png' import horseImage from '../../assets/entities/horse.png' import llamaImage from '../../assets/entities/llama.png' import { InventoryTypeDefinition } from '../../types' export const ENTITY_PLACEHOLDER_IMAGES: Record< NonNullable, string | undefined > = { player: playerImage, horse: horseImage, llama: llamaImage, }