Files
weixinFrameWork/Assets/Plugins/Easy performant outline/Scripts/IUnderlyingBufferProvider.cs

9 lines
164 B
C#
Raw Normal View History

2026-06-05 22:12:05 +08:00
using UnityEngine.Rendering;
namespace EPOOutline
{
public interface IUnderlyingBufferProvider
{
CommandBuffer UnderlyingBuffer { get; }
}
}