Did a few things
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user