فهرست منبع

Added setup function to clicl handler

James Peret 2 سال پیش
والد
کامیت
b4b9ab6c88
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 6 0
      Runtime/InteractionHandler/ClickHandler.cs

+ 6 - 0
Runtime/InteractionHandler/ClickHandler.cs

@@ -17,6 +17,12 @@ namespace KairoEngine.UI.InteractionHandler
             if(receiver != null) receiver.OnClick(title);
             //else Debug.LogError("ClickHandler has no receiver!", this.gameObject);
         }
+
+        public void Setup(string title, IClickHandler receiver)
+        {
+            this.title = title;
+            this.receiver = receiver;
+        }
     }
 }