mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 13:01:21 +00:00
fe17d41b14
git-svn-id: https://svn.eduke32.com/eduke32@5103 1a8010ca-5511-0410-912e-c29ae57300e0
26 lines
491 B
Objective-C
26 lines
491 B
Objective-C
/*
|
|
* GrpFile.game.h
|
|
* duke3d
|
|
*
|
|
* Created by Jonathon Fowler on 24/07/09.
|
|
* Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#include "grpscan.h"
|
|
|
|
@interface GrpFile : NSObject
|
|
{
|
|
NSString *namestring;
|
|
NSString *grpnamestring;
|
|
grpfile_t const *fg;
|
|
}
|
|
- (id)initWithGrpfile:(grpfile_t const *)grpfile;
|
|
- (void)dealloc;
|
|
- (NSString *)name;
|
|
- (NSString *)grpname;
|
|
- (grpfile_t const *)entryptr;
|
|
@end
|
|
|