We're having a problem with this block of code
---------------------------------------------------------------------------------------
- (void) touchesBegan
NSSet *)touches withEvent
UIEvent *)event {
if (gameState == kStateRunning) {
UITouch *touch = [[event allTouches] anyObject];
CGPoint location = [touch locationInView:touch.view];
if (location.x < (self.view.bounds.size.width/2)) {
touchState = kLeftDown;
ballVelocity.x += 0.2;
}
else {
touchState = kRightDown;
ballVelocity.x +=0.2;
}
}
}
- (void)touchesEnded

NSSet *)touches withEvent

UIEvent *)event {
touchState = kTOuchesEnded
---------------------------------------------------------------------------------------
The error "Use of undeclared identifier 'touchesBegan' " occurs on the red line. Theres nothing in the
TGWViewController.h that talks about 'touchesBegan' and we're not sure if there should be. Help please