X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=JoystickController.h;h=aa95815bdd92b6cf8990422a14d2c5c7793411b6;hp=4c878f254d0a0142bebd21031e0ef936415e62d9;hb=61f8cdec21ab083b29c22aa11fda54d6005666ca;hpb=ac4ed3987b6aaefc836294f89ff1f569fad6ac6b diff --git a/JoystickController.h b/JoystickController.h index 4c878f2..aa95815 100644 --- a/JoystickController.h +++ b/JoystickController.h @@ -15,12 +15,17 @@ @interface JoystickController : NSObject { NSMutableArray *joysticks; + NSMutableArray *runningTargets; IOHIDManagerRef hidManager; IBOutlet NSOutlineView* outlineView; IBOutlet TargetController* targetController; IBOutlet ConfigsController* configsController; id selectedAction; BOOL programmaticallySelecting; + BOOL frontWindowOnly; + + @public + NSPoint mouseLoc; } -(void) setup; @@ -28,5 +33,7 @@ @property(readonly) id selectedAction; @property(readonly) NSMutableArray *joysticks; +@property(readonly) NSMutableArray *runningTargets; +@property(readwrite) BOOL frontWindowOnly; @end