20 lines
331 B
Objective-C
20 lines
331 B
Objective-C
//
|
|
// Helper.h
|
|
// stepmania
|
|
//
|
|
// Created by Steve Checkoway on Mon Sep 08 2003.
|
|
// Copyright (c) 2003 Steve Checkoway. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface Helper : NSObject
|
|
{
|
|
NSString *mPath;
|
|
}
|
|
- (id) initWithPath:(NSString *)path;
|
|
- (void)dealloc;
|
|
- (void)startHelper:(id)caller;
|
|
@end
|