apple2js/test/js/__mocks__/apple2shader.js
Will Scullin 1e79d9d59d
Prettier (#203)
* Enabled prettier

* Update lint, fix issues

* Restore some array formatting
2023-11-24 06:45:55 -08:00

21 lines
457 B
JavaScript

export const screenEmu = (function () {
return {
C: {
NTSC_DETAILS: {
imageSize: {
width: 560,
height: 192,
},
},
},
DisplayConfiguration: class {},
Point: class {},
ScreenView: class {
initOpenGL() {
return Promise.resolve();
}
},
Size: class {},
};
})();