source: lost-haven/gamegui/Listable.java@ 3d64884

Last change on this file since 3d64884 was 3d64884, checked in by Dmitry Portnoy <dportnoy@…>, 4 years ago

Fix a bug involving player movement and another involving inventory rendering

  • Property mode set to 100644
File size: 192 bytes
Line 
1package gamegui;
2
3import java.awt.Graphics;
4
5public 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.