Interface IContentResourceDictionary

interface IContentResourceDictionary {
    images: Record<string, Texture>;
    jsons: Record<string, IJsonData>;
    sounds: Record<string, Howl>;
    spritesheets: Record<string, ITextureDictionary>;
    [name: string]: Record<string, any>;
}

Indexable

  • [name: string]: Record<string, any>

Properties

images: Record<string, Texture>
jsons: Record<string, IJsonData>
sounds: Record<string, Howl>
spritesheets: Record<string, ITextureDictionary>