howlongtobeat-android/app/src/main/java/be/kuleuven/howlongtobeat/hltb/HLTBClient.kt

8 lines
186 B
Kotlin
Raw Normal View History

2021-08-17 09:50:06 +02:00
package be.kuleuven.howlongtobeat.hltb
import be.kuleuven.howlongtobeat.cartridges.Cartridge
2021-08-17 09:50:06 +02:00
interface HLTBClient {
suspend fun find(cart: Cartridge): List<HowLongToBeatResult>?
}