summaryrefslogtreecommitdiff
path: root/macosx/PcsxrMemoryObject.h
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-11-25 23:15:57 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-11-25 23:15:57 +0000
commit232c3563b43067afd95f97c234e46b00c03b551c (patch)
treedf120ebeeeb1247903f70e626c27f8dd63a92133 /macosx/PcsxrMemoryObject.h
parentef5d0defe91d406679d1c19fd22cdd5233a2ce33 (diff)
downloadpcsxr-232c3563b43067afd95f97c234e46b00c03b551c.tar.gz
The Memory card editor for Mac OS X should be up and running now.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@72644 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PcsxrMemoryObject.h')
-rw-r--r--macosx/PcsxrMemoryObject.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/macosx/PcsxrMemoryObject.h b/macosx/PcsxrMemoryObject.h
index 6db851ae..aefa1f5c 100644
--- a/macosx/PcsxrMemoryObject.h
+++ b/macosx/PcsxrMemoryObject.h
@@ -6,7 +6,8 @@
// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
//
-#import <AppKit/AppKit.h>
+#import <Foundation/NSString.h>
+#import <AppKit/NSImage.h>
@interface PcsxrMemoryObject : NSObject
{
@@ -14,12 +15,14 @@
NSString *sjisName;
NSImage *memImage;
short memNumber;
+ unsigned char memFlags;
}
@property(copy, readwrite) NSString * englishName;
@property(copy, readwrite) NSString * sjisName;
@property(retain, readwrite) NSImage * memImage;
@property(readwrite) short memNumber;
+@property(readwrite) unsigned char memFlags;
@end