Compare commits

..

1 Commits

Author SHA1 Message Date
Michal Pikulski
7307971748 Add documentation 2025-11-11 13:25:08 +01:00
2 changed files with 4 additions and 8 deletions

View File

@@ -307,11 +307,9 @@ namespace UI.CardSystem.DragDrop
}
#endregion
protected override void OnDestroy()
private void OnDestroy()
{
base.OnDestroy();
if (_boosterDraggable != null)
{
_boosterDraggable.OnBoosterOpened -= HandleBoosterOpened;

View File

@@ -106,11 +106,9 @@ namespace UI.CardSystem.DragDrop
base.OnDragEndedVisual();
// Card-specific visual effects when dragging ends
}
protected override void OnDestroy()
private void OnDestroy()
{
base.OnDestroy();
if (_cardDraggable != null)
{
_cardDraggable.OnCardDataChanged -= HandleCardDataChanged;