using System; using UnityEngine.Rendering; namespace UnityEngine.PostProcessing { public abstract class PostProcessingComponentCommandBuffer : PostProcessingComponent where T : PostProcessingModel { public abstract CameraEvent GetCameraEvent(); public abstract string GetName(); public abstract void PopulateCommandBuffer(CommandBuffer cb); } }