14 lines
189 B
C#
14 lines
189 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityEditor.ShaderGraph
|
||
|
{
|
||
|
[GenerationAPI]
|
||
|
[Serializable]
|
||
|
internal enum IncludeLocation
|
||
|
{
|
||
|
Pregraph,
|
||
|
Graph,
|
||
|
Postgraph
|
||
|
}
|
||
|
}
|