Files

14 lines
392 B
JavaScript
Raw Permalink Normal View History

2025-01-04 00:34:03 +01:00
/**
* 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";
}