blob: d87b73a719c65084b59fe2120c0e25d7be95a8b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// PcsxrMemCardHandler.h
// Pcsxr
//
// Created by Charles Betts on 12/10/11.
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PcsxrFileHandle.h"
@interface PcsxrMemCardHandler : NSWindowController <PcsxrFileHandle>
@property (weak) IBOutlet NSTextField *cardPath;
- (IBAction)setMemCard:(id)sender;
@end
|