mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
19 lines
401 B
JavaScript
19 lines
401 B
JavaScript
|
export const screenEmu = (function () {
|
||
|
return {
|
||
|
C: {
|
||
|
NTSC_DETAILS: {
|
||
|
imageSize: {
|
||
|
width: 560,
|
||
|
height: 192,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
DisplayConfiguration: class {},
|
||
|
Point: class {},
|
||
|
ScreenView: class {
|
||
|
initOpenGL() {}
|
||
|
},
|
||
|
Size: class{},
|
||
|
};
|
||
|
})();
|