16 lines
362 B
JavaScript
16 lines
362 B
JavaScript
import MGNEActorSheet from "./base-actor-sheet.mjs"
|
|
|
|
export default class MGNECompanionSheet extends MGNEActorSheet {
|
|
static DEFAULT_OPTIONS = {
|
|
classes: ["companion"],
|
|
position: {
|
|
width: 820,
|
|
height: 700,
|
|
},
|
|
}
|
|
|
|
static PARTS = {
|
|
main: { template: "systems/fvtt-machine-gods-noxian-expanse/templates/companion-main.hbs" },
|
|
}
|
|
}
|