10 lines
293 B
Kotlin
10 lines
293 B
Kotlin
|
package info.nightscout.androidaps.skins
|
||
|
|
||
|
import androidx.annotation.LayoutRes
|
||
|
import androidx.annotation.StringRes
|
||
|
|
||
|
interface SkinInterface {
|
||
|
@get:StringRes val description : Int
|
||
|
|
||
|
@LayoutRes fun overviewLayout(isLandscape : Boolean, isTablet : Boolean, isSmallHeight : Boolean): Int
|
||
|
}
|