mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
13 lines
385 B
JavaScript
13 lines
385 B
JavaScript
import DhCharacter from './character.mjs';
|
|
import DhCompanion from './companion.mjs';
|
|
import DhAdversary from './adversary.mjs';
|
|
import DhEnvironment from './environment.mjs';
|
|
|
|
export { DhCharacter, DhCompanion, DhAdversary, DhEnvironment };
|
|
|
|
export const config = {
|
|
character: DhCharacter,
|
|
companion: DhCompanion,
|
|
adversary: DhAdversary,
|
|
environment: DhEnvironment
|
|
};
|