_xiaofang/xiaofang/Assets/Bitsplash/Modular Date Picker/Base/Script/Elements/PrevMonthButton.cs
2024-11-29 16:19:12 +08:00

21 lines
491 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Bitsplash.DatePicker
{
public class PrevMonthButton : DatePickerButton , IDatePickerSettingsItem
{
public int Order { get { return 8; } }
public override void RaiseClicked()
{
if (Content != null)
Content.PrevMonth();
}
public string EditorTitle
{
get { return "Prev Month Button"; }
}
}
}