daggerheart/module/data/actor/_module.mjs
WBHarry 53f15a7fde
Some checks are pending
Project CI / build (24.x) (push) Waiting to run
[Feature] NPC Actors (#1949)
2026-05-30 21:11:43 -04:00

17 lines
503 B
JavaScript

import DhCharacter from './character.mjs';
import DhCompanion from './companion.mjs';
import DhAdversary from './adversary.mjs';
import DhNPC from './npc.mjs';
import DhEnvironment from './environment.mjs';
import DhParty from './party.mjs';
export { DhCharacter, DhCompanion, DhAdversary, DhNPC, DhEnvironment, DhParty };
export const config = {
character: DhCharacter,
companion: DhCompanion,
adversary: DhAdversary,
npc: DhNPC,
environment: DhEnvironment,
party: DhParty
};