Files
UnityExplorer/src/UI/Widgets/AutoComplete/ISuggestionProvider.cs
Sinai 7e0f98ef91 Automatic code cleanup (no real changes)
- Use explicit type of var
- Use 'new()'
- Remove unnecessary usings
- Sort usings
- Apply formatting
2022-04-12 05:20:35 +10:00

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);
}
}