8 lines
115 B
JavaScript
8 lines
115 B
JavaScript
class Texture {
|
|
constructor(url) {
|
|
this.img = new Image();
|
|
this.img.src = url;
|
|
}
|
|
}
|
|
module.exports = Texture;
|