// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.Platform
{
///
/// All possible states of the application
///
public enum ApplicationStatus : int
{
///
/// Background constrained
///
BackgroundConstrained = 0,
///
/// Background unconstrained
///
BackgroundUnconstrained = 1,
///
/// Background suspended
///
BackgroundSuspended = 2,
///
/// Foreground
///
Foreground = 3
}
}