blob: 297029a25844172f9003f70e77fd9a7f8f6ee985 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//
// 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 notDeleted;
@synthesize memNumber;
@synthesize memFlags;
- (void)dealloc
{
[englishName release];
[sjisName release];
[memImage release];
[super dealloc];
}
@end
|