A game about forced loneliness, made by TACStudios
at master 321 B view raw
1using System; 2using UnityEngine; 3using UnityEngine.UIElements; 4 5namespace UnityEditor.ShaderGraph.Drawing.Slots 6{ 7 class LabelSlotControlView : VisualElement 8 { 9 public LabelSlotControlView(string label) 10 { 11 var labelField = new Label(label); 12 Add(labelField); 13 } 14 } 15}