| Highlights intersections based on the mouse moves position. This applet inherits all of the behaviour from the Simple example. If the board does not appear, make sure that Java is enabled. |
package com.joot.jigo.examples;
import com.joot.jigo.Goban;
import com.joot.jigo.GobanHighlighter;
/**
* Creates a Goban based on the simple example, the difference is that
* this version has enabled highlighting when the mouse moves over a
* square.
*/
public class HighlightGoban extends Simple
{
public void init()
{
super.init();
new GobanHighlighter( getGoban() );
}
}
© 2010 White Magic Software, Ltd.