Add the base class definition for the PC sheet

This commit is contained in:
Oliver-Akins 2023-11-20 23:09:41 -07:00
parent aa1e6f4c74
commit 9f45ba54ab

15
module/sheets/pc.mjs Normal file
View file

@ -0,0 +1,15 @@
/**
* Extend the basic ActorSheet with some very simple modifications
* @extends {ActorSheet}
*/
export class ActorSheetPC extends ActorSheet {
static get defaultOptions() {
return mergeObject(
super.defaultOptions,
{
classes: ["dotdungeon", "sheet", "actor"],
template: "systems/dotdungeon/templates/actors/character-sheet-mvp.hbs"
}
);
};
}