PrevMonthButton.cs 511 B

1234567891011121314151617181920
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace Bitsplash.DatePicker
  5. {
  6. public class PrevMonthButton : DatePickerButton , IDatePickerSettingsItem
  7. {
  8. public int Order { get { return 8; } }
  9. public override void RaiseClicked()
  10. {
  11. if (Content != null)
  12. Content.PrevMonth();
  13. }
  14. public string EditorTitle
  15. {
  16. get { return "Prev Month Button"; }
  17. }
  18. }
  19. }