36 lines
735 B
JavaScript
36 lines
735 B
JavaScript
import { filePath } from "../../consts.mjs";
|
|
import { GenericPopoverMixin } from "./GenericPopoverMixin.mjs";
|
|
|
|
const { HandlebarsApplicationMixin, ApplicationV2 } = foundry.applications.api;
|
|
|
|
export class AmmoTracker extends GenericPopoverMixin(HandlebarsApplicationMixin(ApplicationV2)) {
|
|
// #region Options
|
|
static DEFAULT_OPTIONS = {
|
|
classes: [
|
|
`ripcrypt`,
|
|
],
|
|
window: {
|
|
title: `Ammo Tracker`,
|
|
contentClasses: [
|
|
`ripcrypt--AmmoTracker`,
|
|
],
|
|
},
|
|
actions: {},
|
|
};
|
|
|
|
static PARTS = {
|
|
main: {
|
|
template: filePath(`templates/Apps/popovers/AmmoTracker/content.hbs`),
|
|
},
|
|
};
|
|
// #endregion
|
|
|
|
// #region Instance Data
|
|
// #endregion
|
|
|
|
// #region Lifecycle
|
|
// #endregion
|
|
|
|
// #region Actions
|
|
// #endregion
|
|
};
|