mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
fe17d41b14
git-svn-id: https://svn.eduke32.com/eduke32@5103 1a8010ca-5511-0410-912e-c29ae57300e0
43 lines
882 B
Objective-C
43 lines
882 B
Objective-C
/*
|
|
* GrpFile.game.m
|
|
* duke3d
|
|
*
|
|
* Created by Jonathon Fowler on 24/07/09.
|
|
* Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#include "GrpFile.game.h"
|
|
|
|
@implementation GrpFile
|
|
- (id)initWithGrpfile:(grpfile_t const *)grpfile
|
|
{
|
|
self = [super init];
|
|
if (self) {
|
|
fg = grpfile;
|
|
namestring = [NSString stringWithCString:fg->type->name encoding:NSUTF8StringEncoding];
|
|
[namestring retain];
|
|
grpnamestring = [NSString stringWithCString:fg->filename encoding:NSUTF8StringEncoding];
|
|
[grpnamestring retain];
|
|
}
|
|
return self;
|
|
}
|
|
- (void)dealloc
|
|
{
|
|
[namestring release];
|
|
[grpnamestring release];
|
|
[super dealloc];
|
|
}
|
|
- (NSString *)name
|
|
{
|
|
return namestring;
|
|
}
|
|
- (NSString *)grpname
|
|
{
|
|
return grpnamestring;
|
|
}
|
|
- (grpfile_t const *)entryptr
|
|
{
|
|
return fg;
|
|
}
|
|
@end
|