SpriteRepo is not needed anymore

This commit is contained in:
Nacho 2025-07-27 19:44:12 +02:00
parent 1e28a8c249
commit 3f324ca141

View File

@ -1,12 +0,0 @@
package com.github.nacabaro.vbhelper.source
import com.github.nacabaro.vbhelper.database.AppDatabase
import com.github.nacabaro.vbhelper.domain.characters.Sprite
class SpriteRepo (
private val db: AppDatabase
) {
suspend fun getAllSprites(): List<Sprite> {
return db.characterDao().getAllSprites()
}
}