// Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
namespace Avalonia.Animation
{
///
/// Determines the playback state of an animation.
///
public enum PlayState
{
///
/// The animation is running.
///
Run,
///
/// The animation is paused.
///
Pause,
///
/// The animation is stopped.
///
Stop
}
}