Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/UnityEngine/PostProcessing/PostProcessingComponentRenderTexture.cs
2026-02-21 16:45:37 +08:00

10 lines
226 B
C#

namespace UnityEngine.PostProcessing
{
public abstract class PostProcessingComponentRenderTexture<T> : PostProcessingComponent<T> where T : PostProcessingModel
{
public virtual void Prepare(Material material)
{
}
}
}