private void DeleteButton_eventClicked(UIComponent component, UIMouseEventParameter eventParam)
 {
     DebugUtils.Log("UINetTypeItem.DeleteButton_eventClicked");
     OnDeleteCallback?.Invoke();
 }
 protected void OnDelete() => OnDeleteCallback.InvokeAsync(null);
Example #3
0
 private void Remove()
 {
     OnDeleteCallback?.Invoke(this);
     Delete();
 }