mirror of
https://github.com/dscalzi/HeliosLauncher.git
synced 2024-11-10 07:09:56 -08:00
6 lines
328 B
JavaScript
6 lines
328 B
JavaScript
const path = require('path')
|
|
const ConfigManager = require('./configmanager')
|
|
|
|
//TODO: Resolve game directory based on windows, linux, or mac..
|
|
exports.GAME_DIRECTORY = path.join(__dirname, '..', '..', '..', 'target', 'test', 'mcfiles')
|
|
exports.DEFAULT_CONFIG = new ConfigManager(path.join(exports.GAME_DIRECTORY, 'config.yml')) |