Last change
on this file 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 | |
---|
1 | package gamegui;
|
---|
2 |
|
---|
3 | import java.awt.Graphics;
|
---|
4 |
|
---|
5 | public 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.