1
0
mirror of https://github.com/thes3m/XNI synced 2024-12-26 13:26:06 +01:00
XNI/Classes/Retronator/Xni/Framework/FrameworkEnums.h
Matej Jan 705dc046c7 Device orientation changes for iOS 6.
git-svn-id: http://xni.googlecode.com/svn/XNI@126 ac433895-eea3-a490-d80a-17149a75e588
2012-11-20 10:40:35 +00:00

9 lines
429 B
Objective-C

#import <UIKit/UIKit.h>
typedef enum {
DisplayOrientationDefault = UIInterfaceOrientationMaskAll,
DisplayOrientationLandscapeLeft = UIInterfaceOrientationMaskLandscapeLeft,
DisplayOrientationLandscapeRight = UIInterfaceOrientationMaskLandscapeRight,
DisplayOrientationPortrait = UIInterfaceOrientationMaskPortrait,
DisplayOrientationPortraitUpsideDown = UIInterfaceOrientationMaskPortraitUpsideDown
} DisplayOrientation;