2017-11-22 10:48:40 +00:00
|
|
|
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')
|
2017-11-30 06:40:56 +00:00
|
|
|
exports.DEFAULT_CONFIG = new ConfigManager(path.join(exports.GAME_DIRECTORY, 'config.json'))
|