15 lines
366 B
C#
15 lines
366 B
C#
using System;
|
|
|
|
namespace UnityEngine.Experimental.UIElements
|
|
{
|
|
// Token: 0x0200033C RID: 828
|
|
public class RepeatButton : VisualElement
|
|
{
|
|
// Token: 0x06003376 RID: 13174 RVA: 0x00050844 File Offset: 0x0004EA44
|
|
public RepeatButton(Action clickEvent, long delay, long interval)
|
|
{
|
|
base.AddManipulator(new Clickable(clickEvent, delay, interval));
|
|
}
|
|
}
|
|
}
|