mirror of
https://github.com/collinsmith/riiablo.git
synced 2025-03-04 22:50:36 +07:00
Exposed render bounds
This commit is contained in:
parent
f3f91d5a85
commit
223efec103
@ -139,6 +139,22 @@ public class MapRenderer {
|
||||
camera.update();
|
||||
}
|
||||
|
||||
public int getMinX() {
|
||||
return renderMinX;
|
||||
}
|
||||
|
||||
public int getMinY() {
|
||||
return renderMinY;
|
||||
}
|
||||
|
||||
public int getMaxX() {
|
||||
return renderMaxX;
|
||||
}
|
||||
|
||||
public int getMaxY() {
|
||||
return renderMaxY;
|
||||
}
|
||||
|
||||
public Map getMap() {
|
||||
return map;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user