Files
CityBuilder/Library/PackageCache/com.unity.shadergraph@052d95cfe62a/Editor/Drawing/ViewModels/InspectorViewModel.cs

16 lines
282 B
C#
Raw Normal View History

2025-07-07 20:59:04 +01:00
using System;
using UnityEngine;
using UnityEngine.UIElements;
namespace UnityEditor.ShaderGraph.Drawing
{
class InspectorViewModel : ISGViewModel
{
public VisualElement parentView { get; set; }
public void ResetViewModelData()
{
}
}
}