Files
xash3d-fwgs/android/app/src/main/java/su/xash/engine/DedicatedService.kt
2025-08-03 19:01:56 +05:00

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")
}
}