summaryrefslogtreecommitdiff
path: root/macosx/PcsxrMemoryObject.m
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-11-24 05:17:27 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2011-11-24 05:17:27 +0000
commite542a8ec7278272ae06117cc09f9352dcff49de9 (patch)
tree30857595956976b3b43a2ab50c6854363aabbb74 /macosx/PcsxrMemoryObject.m
parenta6ef577f7bd97b78db6d078c9d17cd0de2f143a4 (diff)
downloadpcsxr-e542a8ec7278272ae06117cc09f9352dcff49de9.tar.gz
First steps to make a memory card manager for Mac.
Currently it only allows to to wipe a memory card and see what's saved on it. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@72586 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/PcsxrMemoryObject.m')
-rw-r--r--macosx/PcsxrMemoryObject.m25
1 files changed, 25 insertions, 0 deletions
diff --git a/macosx/PcsxrMemoryObject.m b/macosx/PcsxrMemoryObject.m
new file mode 100644
index 00000000..6d7263c1
--- /dev/null
+++ b/macosx/PcsxrMemoryObject.m
@@ -0,0 +1,25 @@
+//
+// PcsxrMemoryObject.m
+// Pcsxr
+//
+// Created by Charles Betts on 11/23/11.
+// Copyright (c) 2011 __MyCompanyName__. All rights reserved.
+//
+
+#import "PcsxrMemoryObject.h"
+
+@implementation PcsxrMemoryObject
+
+@synthesize englishName;
+@synthesize sjisName;
+@synthesize memImage;
+@synthesize memNumber;
+
+- (void)dealloc
+{
+ [englishName release];
+ [sjisName release];
+ [memImage release];
+}
+
+@end