11 lines
423 B
TypeScript
11 lines
423 B
TypeScript
import { DS4ActorSheet } from "./actor-sheet";
|
|
|
|
export class DS4CreatureActorSheet extends DS4ActorSheet {
|
|
/** @override */
|
|
static get defaultOptions(): FormApplicationOptions {
|
|
return mergeObject(super.defaultOptions, {
|
|
classes: ["ds4", "sheet", "actor", "creature"],
|
|
tabs: [{ navSelector: ".sheet-tabs", contentSelector: ".sheet-body", initial: "inventory" }],
|
|
});
|
|
}
|
|
}
|