asdf-games/lib/Texture.js

8 lines
115 B
JavaScript
Raw Permalink Normal View History

class Texture {
constructor(url) {
this.img = new Image();
this.img.src = url;
}
}
2020-02-29 13:45:56 +01:00
module.exports = Texture;