namespace UnityEditor.AddressableAssets.Build
{
///
/// Determines the group whose settings used for shared bundles (Built In and MonoScript bundles).
///
public enum SharedBundleSettings
{
///
/// Shared bundles uses the settings of the Default group.
///
DefaultGroup,
///
/// Shared bundles uses the settings of a specified group.
///
CustomGroup
}
}