RichieBooksOrientation

Objective-C

NS_ENUM(NSInteger, RichieBooksOrientation)
{
	kRichieBooksOrientationPortrait		= 1,
	kRichieBooksOrientationLandscape	= 2,
}

Swift

enum RichieBooksOrientation : Int, @unchecked Sendable

Undocumented