untangle-puzzlegame/Library/PackageCache/com.unity.shadergraph@cdef3258c742/Editor/Drawing/ViewModels/InspectorViewModel.cs
2025-04-17 17:33:08 -04:00

16 lines
282 B
C#

using System;
using UnityEngine;
using UnityEngine.UIElements;
namespace UnityEditor.ShaderGraph.Drawing
{
class InspectorViewModel : ISGViewModel
{
public VisualElement parentView { get; set; }
public void ResetViewModelData()
{
}
}
}