summaryrefslogtreecommitdiff
path: root/macosx/PcsxrMemoryObject.h
diff options
context:
space:
mode:
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