feat: settings to recycler view

This commit is contained in:
aayush262 2024-04-15 22:04:15 +05:30
parent 108285021e
commit 820a09b28f
5 changed files with 246 additions and 511 deletions

View file

@ -0,0 +1,10 @@
package ani.dantotsu.settings
import android.app.Activity
data class Settings(
val name : String,
val icon : Int,
val desc: String,
val activity: Class<out Activity>
)