Merge pull request #2060 from Lucwousin/hd-minimaps

Client: add hd minimaps
This commit is contained in:
Lucwousin
2020-01-02 19:39:51 +01:00
committed by GitHub
10 changed files with 629 additions and 75 deletions

View File

@@ -1665,6 +1665,10 @@ public interface Client extends GameShell
*/
void setInventoryDragDelay(int delay);
boolean isHdMinimapEnabled();
void setHdMinimapEnabled(boolean enabled);
/**
* Gets a set of current world types that apply to the logged in world.
*

View File

@@ -85,4 +85,36 @@ public interface TileModel
int getBufferLen();
void setBufferLen(int bufferLen);
int getUnderlaySwColor();
void setUnderlaySwColor(int color);
int getUnderlaySeColor();
void setUnderlaySeColor(int color);
int getUnderlayNeColor();
void setUnderlayNeColor(int color);
int getUnderlayNwColor();
void setUnderlayNwColor(int color);
int getOverlaySwColor();
void setOverlaySwColor(int color);
int getOverlaySeColor();
void setOverlaySeColor(int color);
int getOverlayNeColor();
void setOverlayNeColor(int color);
int getOverlayNwColor();
void setOverlayNwColor(int color);
}