11 lines
203 B
C#
11 lines
203 B
C#
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace UnityEditor.ShaderGraph
|
||
|
{
|
||
|
class ShaderSubGraphMetadata : ScriptableObject
|
||
|
{
|
||
|
public List<Object> assetDependencies;
|
||
|
}
|
||
|
}
|