@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
39 lines (33 loc) • 673 B
JavaScript
export class EnginePlatform {
/**
* @returns {Storage}
*/
getStorage() {
throw new Error('Not implemented');
}
/**
* @returns {AchievementGateway}
*/
getAchievementGateway() {
throw new Error('Not implemented');
}
/**
* @param {string[]} options
* @returns {string}
*/
pickDefaultLocale(options) {
throw new Error('Not implemented');
}
/**
* @returns {Promise}
*/
startup() {
return Promise.resolve();
}
/**
* @returns {Promise}
*/
shutdown() {
return Promise.resolve();
}
}