mirror of https://github.com/LIJI32/SameBoy.git
15 lines
436 B
Objective-C
15 lines
436 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface GBROMViewController : UITableViewController<UIDocumentPickerDelegate>
|
|
|
|
/* For inheritance */
|
|
- (void)romSelectedAtIndex:(unsigned)index;
|
|
- (void)deleteROMAtIndex:(unsigned)index;
|
|
- (void)renameROM:(NSString *)oldName toName:(NSString *)newName;
|
|
- (void)duplicateROMAtIndex:(unsigned)index;
|
|
- (NSString *)rootPath;
|
|
|
|
/* To be used by subclasses */
|
|
- (UITableViewCell *)cellForROM:(NSString *)rom;
|
|
@end
|