14 lines
392 B
JavaScript
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";
|
|
}
|