windows95/src/renderer/app-state.js
2019-02-03 15:23:20 -08:00

10 lines
177 B
JavaScript

export function setupState () {
window.appState = {
isResetting: false,
isQuitting: false,
cursorCaptured: false,
floppyFile: null,
bootFresh: false
}
}