pixi.js
Version:
PixiJS — The HTML5 Creation Engine =============
24 lines (21 loc) • 491 B
JavaScript
import { BrowserAdapter } from '../environment-browser/BrowserAdapter.mjs';
;
let currentAdapter = BrowserAdapter;
const DOMAdapter = {
/**
* Returns the current adapter.
* @returns {environment.Adapter} The current adapter.
*/
get() {
return currentAdapter;
},
/**
* Sets the current adapter.
* @param adapter - The new adapter.
*/
set(adapter) {
currentAdapter = adapter;
}
};
export { DOMAdapter };
//# sourceMappingURL=adapter.mjs.map