commonMain.ro.dragossusi.sevens.ai.brain.RoundedAiBrain.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ai-jvm Show documentation
Show all versions of ai-jvm Show documentation
AI classes used in sevens
package ro.dragossusi.sevens.ai.brain
import kotlinx.coroutines.CoroutineDispatcher
import ro.dragossusi.sevens.game.listener.RoundedPlayerListener
abstract class RoundedAiBrain(
dispatcher: CoroutineDispatcher
) : AiBrain(dispatcher), RoundedPlayerListener {
}