diff --git a/module/sheets/pc.mjs b/module/sheets/pc.mjs new file mode 100644 index 0000000..452b4f7 --- /dev/null +++ b/module/sheets/pc.mjs @@ -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" + } + ); + }; +} \ No newline at end of file