Gathered exports

This commit is contained in:
WBHarry 2025-06-09 15:01:37 +02:00
parent 1129ff57a9
commit 2ba580da58
4 changed files with 16 additions and 10 deletions

View file

@ -0,0 +1,11 @@
import DhCharacter from './character.mjs';
import DhAdversary from './adversary.mjs';
import DhEnvironment from './environment.mjs';
export { DhCharacter, DhAdversary, DhEnvironment };
export const config = {
character: DhCharacter,
adversary: DhAdversary,
environment: DhEnvironment
};