Add actor sheet that is only the attribute list

This commit is contained in:
Oliver 2026-02-28 00:30:51 -07:00
parent ba05a0d088
commit 916f7ff589
4 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1,17 @@
import { PlayerSheet } from "./PlayerSheet.mjs";
export class AttributeOnlyPlayerSheet extends PlayerSheet {
// #region Options
static DEFAULT_OPTIONS = {
position: {
height: `auto`,
},
};
static get PARTS() {
const parts = super.PARTS;
delete parts.content;
return parts;
};
// #endregion Options
};