mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-23 17:02:36 +08:00

- Use explicit type of var - Use 'new()' - Remove unnecessary usings - Sort usings - Apply formatting
15 lines
321 B
C#
15 lines
321 B
C#
using UniverseLib.UI.Models;
|
|
|
|
namespace UnityExplorer.UI.Widgets.AutoComplete
|
|
{
|
|
public interface ISuggestionProvider
|
|
{
|
|
InputFieldRef InputField { get; }
|
|
bool AnchorToCaretPosition { get; }
|
|
|
|
bool AllowNavigation { get; }
|
|
|
|
void OnSuggestionClicked(Suggestion suggestion);
|
|
}
|
|
}
|