9 lines
220 B
Kotlin
Raw Normal View History

2024-11-05 17:07:22 +09:00
package com.example.accountbook.calendar
interface CalendarTopView {
val currentSelectPositon: IntArray?
val itemHeight: Int
fun setCalendarTopViewChangeListener(listener: CalendarTopViewChangeListener?)
}