-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTargetSetup.h
More file actions
41 lines (30 loc) · 1.16 KB
/
Copy pathTargetSetup.h
File metadata and controls
41 lines (30 loc) · 1.16 KB
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
//
// TargetSetup.h
// VisualFeedback
//
// Created by Nicole Lehrer on 10/28/12.
//
//
#import <Foundation/Foundation.h>
#import "ADMainController.h"
@interface TargetSetup : NSObject
-(void) drawTargetDemowithResultsIf:(BOOL)readyToAssess;
-(void) drawCylinderPlacementReminderAtLocation:(TargetSelection)targetLocation;
-(void) drawConePlacementReminderAtLocation:(TargetSelection)targetLocation;
-(void) drawStaticTable;
-(void) drawWhiteTableSizedBG;
-(void)drawLevel3ReminderForTarget1:(TargetSelection)targetLocation1 andTarget2:(TargetSelection)targetLocation2;
-(void)drawOnlyConePlacementWithNoTableAtLocation:(TargetSelection)targetLocation;
@property float sceneOpacity;
@property (assign) TargetTypes targetTypeLeft;
@property (assign) TargetTypes targetTypeMid;
@property (assign) TargetTypes targetTypeRight;
@property(assign) BOOL leftTargetIsCorrect;
@property(assign) BOOL middleTargetIsCorrect;
@property(assign) BOOL rightTargetIsCorrect;
@property(assign) BOOL transportEnabledIsCorrect;
@property(assign) NSString * speechTag;
@property(assign) int targetID1ForL3;
@property(assign) int targetID2ForL3;
@property(assign) BOOL isTransportTask;
@end