From 1464ae97bd25ea24d58183ac63b88881e3fc73d2 Mon Sep 17 00:00:00 2001 From: "Simon (Darkside) Jackson" Date: Thu, 5 Oct 2023 20:43:41 +0100 Subject: [PATCH] fix missing using --- Runtime/Scripts/Controls/ComboBox/DropDownList.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Runtime/Scripts/Controls/ComboBox/DropDownList.cs b/Runtime/Scripts/Controls/ComboBox/DropDownList.cs index 00ff714..ba5feca 100644 --- a/Runtime/Scripts/Controls/ComboBox/DropDownList.cs +++ b/Runtime/Scripts/Controls/ComboBox/DropDownList.cs @@ -1,6 +1,7 @@ ///Credit perchik ///Sourced from - http://forum.unity3d.com/threads/receive-onclick-event-and-pass-it-on-to-lower-ui-elements.293642/ +using System; using System.Collections.Generic; namespace UnityEngine.UI.Extensions