mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-12 23:06:56 +08:00
17 lines
333 B
C#
17 lines
333 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using UnityEngine;
|
|||
|
using UnityEngine.UI;
|
|||
|
|
|||
|
namespace UnityExplorer.UI.Widgets.AutoComplete
|
|||
|
{
|
|||
|
public interface ISuggestionProvider
|
|||
|
{
|
|||
|
InputField InputField { get; }
|
|||
|
|
|||
|
void OnSuggestionClicked(Suggestion suggestion);
|
|||
|
}
|
|||
|
}
|