// Copyright (c) Arlo Godfrey. All Rights Reserved.
// Licensed under the GNU Lesser General Public License, Version 3.0 with additional terms.
// See the LICENSE, LICENSE.LESSER and LICENSE.ADDITIONAL files in the project root for more information.
using StrixMusic.Sdk.CoreModels;
namespace StrixMusic.Sdk.AppModels
{
///
/// The state of an .
///
public enum CoreState
{
///
/// The core is constructed but not initialized.
///
Unloaded,
///
/// The core requires input from the user.
///
NeedsConfiguration,
///
/// The core has all data it needs to be used without further user interaction.
///
Configured,
///
/// The core is performing additional setup required before use.
///
Loading,
///
/// The core has finished loading and is ready to be used.
///
Loaded,
}
}