using System; using System.Collections.Generic; namespace UnityEditor.Recorder { /// /// Base class that represents a RecorderSetting Input that can be recorded from. (like a Camera, a RenderTexture...) /// [Serializable] public abstract class RecorderInputSettings { protected internal abstract Type InputType { get; } protected internal abstract bool ValidityCheck(List errors); } }