mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
13 lines
399 B
JavaScript
13 lines
399 B
JavaScript
import DHHeritageSheetV2 from './heritage.mjs';
|
|
|
|
const { ItemSheetV2 } = foundry.applications.sheets;
|
|
export default class CommunitySheet extends DHHeritageSheetV2(ItemSheetV2) {
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ['community']
|
|
};
|
|
|
|
static PARTS = {
|
|
header: { template: 'systems/daggerheart/templates/sheets/items/community/header.hbs' },
|
|
...super.PARTS
|
|
};
|
|
}
|