windows95/src/renderer/app-state.js

9 lines
154 B
JavaScript
Raw Normal View History

2018-08-25 05:55:03 +02:00
export function setupState () {
window.appState = {
cursorCaptured: false,
floppyFile: null,
2018-08-25 05:55:18 +02:00
bootFresh: false,
infoInterval: null
2018-08-25 05:55:03 +02:00
}
}