Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 703 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 703 Bytes

#Okey Bot

AI implementation of popular Turkish game in Java, Okey.

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