Created
February 28, 2013 23:13
-
-
Save allenluce-zz/5060981 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface TiltController : NSObject | |
@end | |
@implementation TiltController | |
// ... lots more here ... | |
@end | |
TiltController *tiltController = [[TiltController alloc] init]; | |
float Movement::GetDirection() | |
{ | |
// ... | |
// Why is tiltController NULL here?? | |
return [tiltController getTiltDirection]; | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment