Remove unused import
parent
13e1fe4fe3
commit
3297857688
|
@ -1,13 +1,11 @@
|
||||||
import { AcksActor } from '../actor/entity.js';
|
|
||||||
import { AcksDice } from "../dice.js";
|
import { AcksDice } from "../dice.js";
|
||||||
|
|
||||||
export class AcksCharacterCreator extends FormApplication {
|
export class AcksCharacterCreator extends FormApplication {
|
||||||
static get defaultOptions() {
|
static get defaultOptions() {
|
||||||
const options = super.defaultOptions;
|
const options = super.defaultOptions;
|
||||||
options.classes = ["acks", "dialog", "creator"],
|
options.classes = ["acks", "dialog", "creator"],
|
||||||
options.id = 'character-creator';
|
options.id = 'character-creator';
|
||||||
options.template =
|
options.template = 'systems/acks/templates/actors/dialogs/character-creation.html';
|
||||||
'systems/acks/templates/actors/dialogs/character-creation.html';
|
|
||||||
options.width = 235;
|
options.width = 235;
|
||||||
return options;
|
return options;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue