Files

10 lines
195 B
C#

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