source:
lost-haven/gamegui/Listable.java
Last change on this file was 3d64884, checked in by , 4 years ago | |
---|---|
|
|
File size: 192 bytes |
Line | |
---|---|
1 | package gamegui; |
2 | |
3 | import java.awt.Graphics; |
4 | |
5 | public interface Listable { |
6 | |
7 | void draw(int x, int y, Graphics g); |
8 | int getHeight(); |
9 | int getWidth(); |
10 | int getXOffset(); |
11 | int getYOffset(); |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.