15 lines
No EOL
371 B
JavaScript
15 lines
No EOL
371 B
JavaScript
/**
|
|
* Extend the basic ActorSheet with some very simple modifications
|
|
* @extends {ActorSheet}
|
|
*/
|
|
export class CharacterSheet extends ActorSheet {
|
|
static get defaultOptions() {
|
|
return mergeObject(
|
|
super.defaultOptions,
|
|
{
|
|
classes: ["dotdungeon", "sheet", "actor"],
|
|
template: "systems/dotdungeon/templates/actors/char-sheet-mvp/sheet.hbs"
|
|
}
|
|
);
|
|
};
|
|
} |