1
0
forked from Clones/Controlify
Files
Controlify/src/main/java/dev/isxander/controlify/api/buttonguide/ButtonRenderPosition.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
}