Changeset 8edd04e in lost-haven for gamegui/Listable.java


Ignore:
Timestamp:
Jun 7, 2020, 3:04:32 PM (4 years ago)
Author:
Dmitry Portnoy <dmitry.portnoy@…>
Branches:
master
Children:
a49176d
Parents:
155577b
Message:

Make the decompiled game code compile successfully

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gamegui/Listable.java

    r155577b r8edd04e  
    11package gamegui;
    22
    3 import java.awt.*;
     3import java.awt.Graphics;
    44
    55public interface Listable {
    6         public void drawListString(int x, int y, Graphics g);
     6
     7  void draw(int paramInt1, int paramInt2, Graphics paramGraphics);
     8  int getHeight();
     9  int getWidth();
     10  int getXOffset();
     11  int getYOffset();
    712}
Note: See TracChangeset for help on using the changeset viewer.