Ajout QoL

This commit is contained in:
2021-04-24 21:30:17 +02:00
parent 0149f49e7c
commit 36bb9ecd17
10 changed files with 231 additions and 8 deletions

View File

@@ -13,6 +13,7 @@ import { VadentisItemSheet } from "./vadentis-item-sheet.js";
import { VadentisActorSheet } from "./vadentis-actor-sheet.js";
import { VadentisUtility } from "./vadentis-utility.js";
import { VadentisCombat } from "./vadentis-combat.js";
import { VadentisTokenHud } from "./vadentis-hud.js";
/* -------------------------------------------- */
/* Foundry VTT Initialization */
@@ -60,6 +61,8 @@ Hooks.once("init", async function () {
Hooks.on('updateCombat', (combat, round, diff, id) => {
VadentisUtility.updateCombat(combat, round, diff, id);
});
VadentisTokenHud.init();
});