public class ComputerThinking implements Runnable{
	private Othello othello;
	public ComputerThinking(Othello othello){
		this.othello = othello;
	}
	public void run(){
		try{
			Thread.sleep(2000);
		}catch(InterruptedException e){
		}
		othello.computer();
		othello.repaint();
	}
}

