import java.awt.*; /** * Sorry, not documented yet. *
* Source */ interface BojngInterface { // Update _update(); int _imgwidth(); int _imgheight(); int _blockwidth(); int _blockheight(); int _fieldWidth(); int _fieldHeight(); Rectangle _paddle(); void drawImage(Image i,int x,int y); // ruft update.add auf void drawBackground(int x,int y,int width,int height); void clearBlock(int bx,int by); Rectangle getItem(int bx,int by); void removeItem(int bx,int by); void hit(Object item,Object ball); void msg(String s); void repaint(); int posRand(int max); void update(); int ms(); }