summaryrefslogtreecommitdiff
path: root/macosx/PcsxrMemoryObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/PcsxrMemoryObject.h')
-rw-r--r--macosx/PcsxrMemoryObject.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/macosx/PcsxrMemoryObject.h b/macosx/PcsxrMemoryObject.h
new file mode 100644
index 00000000..6db851ae
--- /dev/null
+++ b/macosx/PcsxrMemoryObject.h
@@ -0,0 +1,25 @@
+//
+// PcsxrMemoryObject.h
+// Pcsxr
+//
+// Created by Charles Betts on 11/23/11.
+// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
+//
+
+#import <AppKit/AppKit.h>
+
+@interface PcsxrMemoryObject : NSObject
+{
+ NSString *englishName;
+ NSString *sjisName;
+ NSImage *memImage;
+ short memNumber;
+}
+
+@property(copy, readwrite) NSString * englishName;
+@property(copy, readwrite) NSString * sjisName;
+@property(retain, readwrite) NSImage * memImage;
+@property(readwrite) short memNumber;
+
+
+@end