Restructure / cleanup / improve icon pack handling

This commit is contained in:
MM20
2023-02-27 22:36:46 +01:00
parent 96f69356c4
commit 7168169e35
25 changed files with 1441 additions and 725 deletions
@@ -15,6 +15,9 @@ data class ColorLayer(
data class ClockLayer(
val sublayers: List<ClockSublayer>,
val defaultHour: Int = 0,
val defaultMinute: Int = 0,
val defaultSecond: Int = 0,
val scale: Float,
) : LauncherIconLayer
@@ -38,6 +41,9 @@ data class TintedIconLayer(
data class TintedClockLayer(
val sublayers: List<ClockSublayer>,
val defaultHour: Int = 0,
val defaultMinute: Int = 0,
val defaultSecond: Int = 0,
val scale: Float,
val color: Int = 0,
) : LauncherIconLayer