#nullable disable
namespace StardewModdingAPI.Framework.ModLoading
{
/// Indicates the result of an assembly load.
internal enum AssemblyLoadStatus
{
/// The assembly was loaded successfully.
Okay = 1,
/// The assembly could not be loaded.
Failed = 2,
/// The assembly is already loaded.
AlreadyLoaded = 3
}
}