Basic module loading

This commit is contained in:
Phireh 2024-12-31 15:23:52 +01:00
commit 60e77c05d6
2 changed files with 11 additions and 2 deletions

6
scripts/bae.js Normal file
View file

@ -0,0 +1,6 @@
// This runs on file load
console.log("BAE MODULE LOADED");
// This runs on FoundryVTT init
Hooks.on("init", function() { console.log("BAE INIT HOOK"); });
// This runs when game data is ready
Hooks.on("ready", function() { console.log("BAE READY HOOK"); });