Did a few things
This commit is contained in:
25
Assets/UserReporting/Scripts/UserReportingState.cs
Normal file
25
Assets/UserReporting/Scripts/UserReportingState.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
/// <summary>
|
||||
/// Represents a user reporting state.
|
||||
/// </summary>
|
||||
public enum UserReportingState
|
||||
{
|
||||
/// <summary>
|
||||
/// Idle.
|
||||
/// </summary>
|
||||
Idle = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Creating bug report.
|
||||
/// </summary>
|
||||
CreatingUserReport = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Showing form.
|
||||
/// </summary>
|
||||
ShowingForm = 2,
|
||||
|
||||
/// <summary>
|
||||
/// Submitting form.
|
||||
/// </summary>
|
||||
SubmittingForm = 3
|
||||
}
|
Reference in New Issue
Block a user