10 lines
226 B
C#
10 lines
226 B
C#
namespace UnityEngine.PostProcessing
|
|
{
|
|
public abstract class PostProcessingComponentRenderTexture<T> : PostProcessingComponent<T> where T : PostProcessingModel
|
|
{
|
|
public virtual void Prepare(Material material)
|
|
{
|
|
}
|
|
}
|
|
}
|