mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-12 22:42:53 -06:00
19 lines
360 B
Java
19 lines
360 B
Java
package net.simonvt.menudrawer;
|
|
|
|
/**
|
|
* Enums used for positioning the drawer.
|
|
*/
|
|
public enum Position {
|
|
// Positions the drawer to the left of the content.
|
|
LEFT,
|
|
|
|
// Positions the drawer above the content.
|
|
TOP,
|
|
|
|
// Positions the drawer to the right of the content.
|
|
RIGHT,
|
|
|
|
// Positions the drawer below the content.
|
|
BOTTOM,
|
|
}
|