forked from Clones/Controlify
20 lines
389 B
Java
20 lines
389 B
Java
package dev.isxander.controlify.api.buttonguide;
|
|
|
|
/**
|
|
* Where the guide should be rendered relative to the button.
|
|
*/
|
|
public enum ButtonRenderPosition {
|
|
/**
|
|
* Renders outside the button the left.
|
|
*/
|
|
LEFT,
|
|
/**
|
|
* Renders outside the button the right.
|
|
*/
|
|
RIGHT,
|
|
/**
|
|
* Renders inside the button on the left of the button text.
|
|
*/
|
|
TEXT
|
|
}
|