Package org.bukkit.map
Class MapFont.CharacterSprite
java.lang.Object
org.bukkit.map.MapFont.CharacterSprite
- Enclosing class:
- MapFont
Represents the graphics for a single character in a MapFont.
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Constructor Details- 
CharacterSpritepublic CharacterSprite(int width, int height, @NotNull boolean[] data) 
 
- 
- 
Method Details- 
getpublic boolean get(int row, int col) Get the value of a pixel of the character.- Parameters:
- row- The row, in the range [0,8).
- col- The column, in the range [0,8).
- Returns:
- True if the pixel is solid, false if transparent.
 
- 
getWidthpublic int getWidth()Get the width of the character sprite.- Returns:
- The width of the character.
 
- 
getHeightpublic int getHeight()Get the height of the character sprite.- Returns:
- The height of the character.
 
 
-