Add the base class definition for the PC sheet
This commit is contained in:
parent
aa1e6f4c74
commit
9f45ba54ab
1 changed files with 15 additions and 0 deletions
15
module/sheets/pc.mjs
Normal file
15
module/sheets/pc.mjs
Normal 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"
|
||||
}
|
||||
);
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue