blob: ec34086af3b1f3b8d49aee0b458db6a70d294261 [file] [log] [blame]
//
// Created by max on 5/4/12.
//
// To change the template use AppCode | Preferences | File Templates.
//
#import <Foundation/Foundation.h>
#import <JavaVM/jni.h>
@interface Launcher : NSObject {
int argc;
char **argv;
}
- (id)initWithArgc:(int)anArgc argv:(char **)anArgv;
- (void) launch;
@end