source:
winedb/src/gamegui/Listable.java
Last change on this file was 9b6a069, checked in by , 14 years ago | |
---|---|
|
|
File size: 237 bytes |
Rev | Line | |
---|---|---|
[9b6a069] | 1 | package gamegui; |
2 | ||
3 | import java.awt.*; | |
4 | ||
5 | public 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.