// // DownloadWindowController.h // Ample // // Created by Kelvin Sherlock on 9/2/2020. // Copyright © 2020 Kelvin Sherlock. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface DownloadWindowController : NSWindowController @property NSString *currentROM; @property NSInteger currentCount; @property NSInteger totalCount; @property NSInteger errorCount; @property BOOL active; +(instancetype)sharedInstance; @end @interface DownloadWindowController (URL) @end @interface DownloadWindowController (Menu) @end NS_ASSUME_NONNULL_END