summaryrefslogtreecommitdiff
path: root/macosx/PcsxrMemCardController.h
blob: c6d05121e5d0bf20204b86d8f5c225f00ac4b3ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  PcsxrMemCardManager.h
//  Pcsxr
//
//  Created by Charles Betts on 11/23/11.
//  Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//

#import <Cocoa/Cocoa.h>


@interface PcsxrMemCardController : NSWindowController <NSWindowDelegate>
{
	IBOutlet NSCollectionView *memCard1view;
	IBOutlet NSCollectionView *memCard2view;
	NSMutableArray *memCard1Array;
	NSMutableArray *memCard2Array;
}

- (IBAction)moveBlock:(id)sender;
- (IBAction)formatCard:(id)sender;
- (IBAction)deleteMemoryObject:(id)sender;
- (void)loadMemoryCardInfoForCard:(int)theCard;
@end