import java.applet.Applet; import java.awt.event.*; import java.awt.*; import java.awt.geom.*; /**This is a dummy class designed to work with the web version of Billiard King. The real version is stored in the Output directory. The point is that web based applets have certain security restrictions that don't allow the kind of IO enabled by the Output class.*/ public class Output { public Output() {} public Output(String S) {} public void write(String S) {} public void writeln(String S) {} public void lineWrite(GeneralPath X,Color C) {} public void polyWrite(GeneralPath X,Color C) {} public void polyWrite(GeneralPath X,Color C1,Color C2) {} public void polyWriteThick(GeneralPath X,Color C1,Color C2) {} public void tclBgSet(Color C) {} }