Files
Foundry-VTT-Docker/resources/app/client/apps/hud/pause.js
2025-01-04 00:34:03 +01:00

19 lines
390 B
JavaScript

/**
* Pause notification in the HUD
* @extends {Application}
*/
class Pause extends Application {
static get defaultOptions() {
const options = super.defaultOptions;
options.id = "pause";
options.template = "templates/hud/pause.html";
options.popOut = false;
return options;
}
/** @override */
getData(options={}) {
return { paused: game.paused };
}
}