28 lines
566 B
C#
28 lines
566 B
C#
|
namespace Unity.Cloud.UserReporting
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Represents a user report appearance hint.
|
|||
|
/// </summary>
|
|||
|
public enum UserReportAppearanceHint
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Display normally.
|
|||
|
/// </summary>
|
|||
|
Normal = 0,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Display landscape.
|
|||
|
/// </summary>
|
|||
|
Landscape = 1,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Display portrait.
|
|||
|
/// </summary>
|
|||
|
Portrait = 2,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Display large.
|
|||
|
/// </summary>
|
|||
|
Large = 3
|
|||
|
}
|
|||
|
}
|