source: winedb/src/gamegui/Listable.java

Last change on this file was 9b6a069, checked in by dportnoy <devnull@…>, 13 years ago

Initial commit

  • Property mode set to 100644
File size: 237 bytes
Line 
1package gamegui;
2
3import java.awt.*;
4
5public interface Listable {
6 public void draw(int x, int y, Graphics g);
7
8 public int getHeight();
9
10 public int getWidth();
11
12 public int getXOffset();
13
14 public int getYOffset();
15}
Note: See TracBrowser for help on using the repository browser.