Texture.js 168 B

123456789
  1. class Texture
  2. {
  3. constructor(image = null, width = 0, height = 0)
  4. {
  5. this.image = image;
  6. this.width = width;
  7. this.height = height;
  8. }
  9. }