2018-09-01 22:20:58 +08:00

17 lines
296 B
JavaScript

var ID = -1;
/**
* BaseLoader
* @author tengge / https://github.com/tengge1
*/
function BaseLoader() {
this.id = `BaseLoader${ID--}`;
}
BaseLoader.prototype.load = function (url, options) {
return new Promise(resolve => {
resolve(null);
});
};
export default BaseLoader;