版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1 год назад
1234567891011121314151617
  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