9 lines
220 B
Kotlin
9 lines
220 B
Kotlin
|
|
package com.example.accountbook.calendar
|
||
|
|
|
||
|
|
|
||
|
|
interface CalendarTopView {
|
||
|
|
val currentSelectPositon: IntArray?
|
||
|
|
val itemHeight: Int
|
||
|
|
|
||
|
|
fun setCalendarTopViewChangeListener(listener: CalendarTopViewChangeListener?)
|
||
|
|
}
|