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

22 lines
470 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;
2021-12-02 18:35:46 +11:00
using UniverseLib.UI;
2022-01-31 21:24:01 +11:00
using UniverseLib.UI.Models;
2021-04-23 21:50:58 +10:00
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);
}
}