blob: ec34086af3b1f3b8d49aee0b458db6a70d294261 [file] [log] [blame]
Jean-Baptiste Querub56ea2a2013-01-08 11:11:20 -08001//
2// Created by max on 5/4/12.
3//
4// To change the template use AppCode | Preferences | File Templates.
5//
6
7
8#import <Foundation/Foundation.h>
9#import <JavaVM/jni.h>
10
11
12@interface Launcher : NSObject {
13 int argc;
14 char **argv;
15}
16- (id)initWithArgc:(int)anArgc argv:(char **)anArgv;
17
18
19- (void) launch;
20@end