| 41 | declare let window: Win95Window; |
| 42 | |
| 43 | export interface EmulatorState { |
| 44 | currentUiCard: "start" | "settings"; |
| 45 | emulator?: any; |
| 46 | scale: number; |
| 47 | floppyFile?: File; |
| 48 | cdromFile?: File; |
| 49 | smbSharePath: string; |
| 50 | isBootingFresh: boolean; |
| 51 | isCursorCaptured: boolean; |
| 52 | hasAbsoluteMouse: boolean; |
| 53 | isInfoDisplayed: boolean; |
| 54 | isRunning: boolean; |
| 55 | infoBarSettings: InfoBarSettings; |
| 56 | legacyStatePath: string | null; |
| 57 | legacyRecovered: { dir: string; files: number } | null; |
| 58 | legacyRecoverBusy: boolean; |
| 59 | legacyRecoverError: string | null; |
| 60 | } |
| 61 | |
| 62 | export class Emulator extends React.Component<{}, EmulatorState> { |
| 63 | private isQuitting = false; |
nothing calls this directly
no outgoing calls
no test coverage detected