windows95/src/renderer/app-state.js

10 lines
177 B
JavaScript
Raw Normal View History

2018-08-25 05:55:03 +02:00
export function setupState () {
window.appState = {
2019-02-04 00:23:20 +01:00
isResetting: false,
isQuitting: false,
2018-08-25 05:55:03 +02:00
cursorCaptured: false,
floppyFile: null,
2019-02-03 22:49:09 +01:00
bootFresh: false
2018-08-25 05:55:03 +02:00
}
}