Hello,
If you are referring to SHThumbstick, it technically does not support the latest Sparrow version. Which is why you are getting that error. We can fix that though!
Change all the '#include "SP*.h"' instances to '#include <Sparrow/SP*.h>'.
Better yet, if you have '#include <Sparrow/Sparrow.h>' already prefixed to all files (meaning that you added that line to the prefix header), then you can just remove the #include files in SHThumbstick. If not, continue reading below.
Example:
SHThumbstick.h
#import <Foundation/Foundation.h>
#import <Sparrow/SPDisplayObjectContainer.h>
#import <Sparrow/SPEvent.h>
SHThumbstick.m
#import <Sparrow/SHThumbstick.h>
#import <Sparrow/SPStage.h>
#import <Sparrow/SPTexture.h>
#import <Sparrow/SPImage.h>
#import <Sparrow/SPRectangle.h>
#import <Sparrow/SPTouchEvent.h>
#import <Sparrow/SPTouch.h>
#import <Sparrow/SPPoint.h>
#import <Sparrow/SPDisplayObject.h>