/* * PipeDream - the PipeDream applet * * by Adam Doppelt * http://www.cs.brown.edu/people/amd/ */ import java.applet.*; import java.awt.*; public class PipeDream extends Applet { Board board_; public void init () { showStatus("Loading PipeDream..."); // TitleBar title = new TitleBar(this); // title.SetColor(Color.yellow); // title.SetMessage("PipeDream v0.9 - by Adam Doppelt"); board_ = new Board(this, this); } public void start() { board_.start(); } public void stop() { board_.stop(); } }