geforkt von Mirrors/Paper
Add non-deprecated constructor for MapCursor
By: Isaac <minuskube@gmail.com>
Dieser Commit ist enthalten in:
Ursprung
e3d4acc303
Commit
67dcd3fc2d
@ -27,6 +27,23 @@ public final class MapCursor {
|
|||||||
this.visible = visible;
|
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.
|
* Get the X position of this cursor.
|
||||||
*
|
*
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren