14 lines
175 B
C#
14 lines
175 B
C#
namespace CPF.Mac.CoreLocation
|
|
{
|
|
public enum CLDeviceOrientation
|
|
{
|
|
Unknown,
|
|
Portrait,
|
|
PortraitUpsideDown,
|
|
LandscapeLeft,
|
|
LandscapeRight,
|
|
FaceUp,
|
|
FaceDown
|
|
}
|
|
}
|