.dungeon/dotdungeon.mjs
2023-11-20 23:08:31 -07:00

10 lines
No EOL
267 B
JavaScript

import ActorSheetPC from "./module/sheets/pc.mjs";
console.log(`.dungeon | hello from dotdungeon.mjs`)
Hooks.once(`init`, async () => {
Actors.registerSheet("dotdungeon-pug", ActorSheetPC, {
types: ["pc", "pug"],
makeDefault: true,
canBeDefault: true,
});
})