]> git.saurik.com Git - iphone-api.git/blobdiff - UIKit/UIAccelerometer.h
Added UISystemFont*.
[iphone-api.git] / UIKit / UIAccelerometer.h
index ac3846acd5fb3208b672ef78f5d557041069785a..b6c8a24a84495ef77c5ec2102a34fd569f19cecc 100644 (file)
@@ -6,6 +6,8 @@
 
 #import <Foundation/NSObject.h>
 
+@protocol UIAccelerometerDelegate;
+
 @interface UIAccelerometer : NSObject
 {
     double _updateInterval;
 
 @end
 
+@class UIAcceleration;
+
+@protocol UIAccelerometerDelegate<NSObject>
+@optional
+- (void) accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration;
+@end
+