mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 11:35:05 +08:00
12 lines
230 B
Kotlin
12 lines
230 B
Kotlin
package su.xash.engine
|
|
|
|
import android.app.Service
|
|
import android.content.Intent
|
|
import android.os.IBinder
|
|
|
|
class DedicatedService : Service() {
|
|
override fun onBind(intent: Intent?): IBinder? {
|
|
TODO("Not yet implemented")
|
|
}
|
|
}
|