mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-23 08:46:44 +01:00
Add non-deprecated constructor for MapCursor
By: Isaac <minuskube@gmail.com>
This commit is contained in:
parent
e3d4acc303
commit
67dcd3fc2d
1 changed files with 17 additions and 0 deletions
|
@ -27,6 +27,23 @@ public final class MapCursor {
|
|||
this.visible = visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialize the map cursor.
|
||||
*
|
||||
* @param x The x coordinate, from -128 to 127.
|
||||
* @param y The y coordinate, from -128 to 127.
|
||||
* @param direction The facing of the cursor, from 0 to 15.
|
||||
* @param type The type (color/style) of the map cursor.
|
||||
* @param visible Whether the cursor is visible by default.
|
||||
*/
|
||||
public MapCursor(byte x, byte y, byte direction, Type type, boolean visible) {
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
setDirection(direction);
|
||||
setType(type);
|
||||
this.visible = visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the X position of this cursor.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue