mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-06-09 06:08:10 +02:00
Mvoed config out form under application
This commit is contained in:
parent
82960ea4bd
commit
28a70e7288
39 changed files with 32 additions and 32 deletions
24
module/config/system.mjs
Normal file
24
module/config/system.mjs
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import * as GENERAL from './generalConfig.mjs';
|
||||
import * as DOMAIN from './domainConfig.mjs';
|
||||
import * as ACTOR from './actorConfig.mjs';
|
||||
import * as ITEM from './itemConfig.mjs';
|
||||
import * as SETTINGS from './settingsConfig.mjs';
|
||||
import { hooks as HOOKS } from './hooksConfig.mjs';
|
||||
import * as EFFECTS from './effectConfig.mjs';
|
||||
import * as ACTIONS from './actionConfig.mjs';
|
||||
import * as FLAGS from './flagsConfig.mjs';
|
||||
|
||||
export const SYSTEM_ID = 'daggerheart';
|
||||
|
||||
export const SYSTEM = {
|
||||
id: SYSTEM_ID,
|
||||
GENERAL,
|
||||
DOMAIN,
|
||||
ACTOR,
|
||||
ITEM,
|
||||
SETTINGS,
|
||||
HOOKS,
|
||||
EFFECTS,
|
||||
ACTIONS,
|
||||
FLAGS
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue