source: lost-haven/gamegui/Listable.java@ b2d7893

Last change on this file since b2d7893 was 8edd04e, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 4 years ago

Make the decompiled game code compile successfully

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