mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-11 18:26:04 +00:00
27 lines
730 B
TypeScript
27 lines
730 B
TypeScript
import { AvailableThemes, InterfaceStoredSettings, RoutesType } from '@/hooks/Mapper/mapRootProvider/types.ts';
|
|
|
|
export const STORED_INTERFACE_DEFAULT_VALUES: InterfaceStoredSettings = {
|
|
isShowMenu: false,
|
|
isShowMinimap: true,
|
|
isShowKSpace: false,
|
|
isThickConnections: false,
|
|
isShowUnsplashedSignatures: false,
|
|
isShowBackgroundPattern: true,
|
|
isSoftBackground: false,
|
|
theme: AvailableThemes.default,
|
|
};
|
|
|
|
export const DEFAULT_ROUTES_SETTINGS: RoutesType = {
|
|
path_type: 'shortest',
|
|
include_mass_crit: true,
|
|
include_eol: true,
|
|
include_frig: true,
|
|
include_cruise: true,
|
|
include_thera: true,
|
|
avoid_wormholes: false,
|
|
avoid_pochven: false,
|
|
avoid_edencom: false,
|
|
avoid_triglavian: false,
|
|
avoid: [],
|
|
};
|