mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-01 11:12:49 +08:00
22 lines
470 B
C#
22 lines
470 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using UniverseLib.UI;
|
|
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);
|
|
}
|
|
}
|