Files

9 lines
164 B
C#
Raw Permalink Normal View History

2025-11-03 11:25:01 +08:00
using UnityEngine.Rendering;
namespace EPOOutline
{
public interface IUnderlyingBufferProvider
{
CommandBuffer UnderlyingBuffer { get; }
}
}