StellarXipher/Library/PackageCache/com.unity.render-pipelines.universal@0737ab768e18/Runtime/2D/Shadows/ShadowProvider/IEdgeStore.cs
2025-02-06 16:45:46 -05:00

13 lines
303 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Unity.Collections;
namespace UnityEngine.Rendering.Universal
{
internal interface IEdgeStore
{
NativeArray<ShadowEdge> GetOutsideEdges(NativeArray<Vector3> vertices, NativeArray<int> indices);
}
}