Clean-up of Joystick class. Refactor constructor to avoid mandatory 'post-constructor...
[enjoyable.git] / TargetMouseScroll.h
1 //
2 // TargetMouseScroll.h
3 // Enjoy
4 //
5 // Created by Yifeng Huang on 7/28/12.
6 // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11 @interface TargetMouseScroll : Target {
12 int howMuch;
13 }
14
15 @property(readwrite) int howMuch;
16
17 +(TargetMouseScroll*) unstringifyImpl: (NSArray*) comps;
18
19 @end