Files
test/Assets/EditorAttributes/Runtime/Scripts/Attributes/ButtonAttributes/IRepetableButton.cs
T

10 lines
195 B
C#

namespace EditorAttributes
{
public interface IRepetableButton
{
public bool IsRepetable { get; }
public long PressDelay { get; }
public long RepetitionInterval { get; }
}
}