Initialize project files

This commit is contained in:
Eldritch-Oliver 2025-10-16 23:24:36 -06:00
parent 22a4cc1611
commit 643b2e0c88
16 changed files with 1833 additions and 0 deletions

5
module/consts.mjs Normal file
View file

@ -0,0 +1,5 @@
export const __ID = `otf`;
export function inDev() {
return game.modules.get(__ID).flags.inDev;
};

5
module/hooks/ready.mjs Normal file
View file

@ -0,0 +1,5 @@
import { __ID } from "../consts.mjs";
Hooks.on(`ready`, () => {
console.log(`${__ID} | Ready`);
});

2
module/oft.mjs Normal file
View file

@ -0,0 +1,2 @@
// Hooks
import "./hooks/ready.mjs";