source: lost-perception/gamegui/Listable.java@ e5d2936

Last change on this file since e5d2936 was ebd3538, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 6 years ago

Initial commit. This codebase for the Lost Perception game was created by decompiling code from a jar file.

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