#Okey Bot
This is an open source Java implementation of Okey Game. Okey is a popular Turkish game which is played with four players. Here is a detailed description and rules of the game.
Popular android game Okey Mini uses this library.
com.appsonfire.okey.bot.simulation package contains classes that simulates a game between (smart) okey bots (players).
You can implement your own version of SmartOkeyBotInterface:
public interface OkeyBotInterface {
public Hand play(Tile joker, List<Tile> tiles);
}