-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMacSaber.h
54 lines (46 loc) · 995 Bytes
/
MacSaber.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* MacSaber */
#import <Cocoa/Cocoa.h>
#import "motion.h"
#import "backlight.h"
#import "defines.c"
/*
@interface MacSaber : NSObject
{
IBOutlet id debugPane;
}
@end
*/
@interface MacSaber : NSObject
{
IBOutlet id f1;
IBOutlet id f1b;
IBOutlet id f2;
IBOutlet id f2b;
IBOutlet id f3;
IBOutlet id f3b;
IBOutlet id lbl1;
IBOutlet id lbl2;
IBOutlet id lbl3;
IBOutlet id presButan;
IBOutlet id reportButton;
IBOutlet id debugBox;
IBOutlet id debugPane;
BOOL going;
BOOL error;
BOOL reportEnabled;
NSTimer *timer, *idle;
int macType;
int structSize;
int sStrike, sIdle, sHit, sOff, sOn, sStart, sSwing;
int roll, roll2, rollD2, tilt, tilt2, tiltD2;
NSMutableString *versionURL;
NSString *myVersion;
NSString *reportData;
char *macTypeCName;
}
- (void)setVersionURL:(NSString *)value;
- (IBAction)check:(id)sender;
- (IBAction)checkForUpdates:(id)sender;
- (IBAction)report:(id)sender;
- (IBAction)debug:(id)sender;
@end