Files
UnityExplorer_Fix/src/UI/Widgets/AutoComplete/ISuggestionProvider.cs

20 lines
419 B
C#
Raw Normal View History

2021-04-23 21:50:58 +10:00
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
{
InputFieldRef InputField { get; }
bool AnchorToCaretPosition { get; }
2021-04-23 21:50:58 +10:00
bool AllowNavigation { get; }
2021-04-23 21:50:58 +10:00
void OnSuggestionClicked(Suggestion suggestion);
}
}