// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) VRMADA, All rights reserved.
//
// --------------------------------------------------------------------------------------------------------------------
using System;
namespace UltimateXR.Editor.Utilities
{
public abstract partial class ComponentProcessorWindow
{
#region Public Types & Data
///
/// Enumerates the different log option flags.
///
[Flags]
public enum LogOptions
{
///
/// Output information of processed components.
///
Processed = 1 << 0,
///
/// Output information of components that were not processed (ignored).
///
Ignored = 1 << 1
}
#endregion
}
}