版博士V2.0程序
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

17 lignes
369 B

  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. /**
  4. *
  5. */
  6. class Screen {
  7. constructor() {
  8. this.width = 1024;
  9. this.height = 768;
  10. this.availWidth = 1024;
  11. this.availHeight = 768;
  12. this.colorDepth = 24;
  13. this.pixelDepth = 24;
  14. }
  15. }
  16. exports.default = Screen;
  17. //# sourceMappingURL=Screen.js.map