You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
634 B
28 lines
634 B
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
// This file is automatically generated. Changes to this file may be overwritten.
|
|
|
|
namespace Epic.OnlineServices.Platform
|
|
{
|
|
/// <summary>
|
|
/// All possible states of the application
|
|
/// </summary>
|
|
public enum ApplicationStatus : int
|
|
{
|
|
/// <summary>
|
|
/// Background constrained
|
|
/// </summary>
|
|
BackgroundConstrained = 0,
|
|
/// <summary>
|
|
/// Background unconstrained
|
|
/// </summary>
|
|
BackgroundUnconstrained = 1,
|
|
/// <summary>
|
|
/// Background suspended
|
|
/// </summary>
|
|
BackgroundSuspended = 2,
|
|
/// <summary>
|
|
/// Foreground
|
|
/// </summary>
|
|
Foreground = 3
|
|
}
|
|
}
|