Files
2025-01-04 00:34:03 +01:00

12 lines
322 B
JavaScript

/**
* The collection of Cards documents which exist within the active World.
* This Collection is accessible within the Game object as game.cards.
* @extends {WorldCollection}
* @see {@link Cards} The Cards document
*/
class CardStacks extends WorldCollection {
/** @override */
static documentName = "Cards";
}