Files
Foundry-VTT-Docker/resources/app/client/data/collections/items.js
2025-01-04 00:34:03 +01:00

14 lines
392 B
JavaScript

/**
* The singleton collection of Item documents which exist within the active World.
* This Collection is accessible within the Game object as game.items.
* @extends {WorldCollection}
*
* @see {@link Item} The Item document
* @see {@link ItemDirectory} The ItemDirectory sidebar directory
*/
class Items extends WorldCollection {
/** @override */
static documentName = "Item";
}