mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-27 23:27:59 +01:00
Document each slot type
This commit is contained in:
parent
7381f6181e
commit
66cbf1ff2b
1 changed files with 12 additions and 0 deletions
|
@ -2,9 +2,21 @@ package com.minelittlepony.unicopia.ability;
|
||||||
|
|
||||||
public enum AbilitySlot {
|
public enum AbilitySlot {
|
||||||
NONE,
|
NONE,
|
||||||
|
/**
|
||||||
|
* The primary ability. Corresponds to the largest ring in the HUD
|
||||||
|
*/
|
||||||
PRIMARY,
|
PRIMARY,
|
||||||
|
/**
|
||||||
|
* THe secondary ability. Corresponds to the top small ring in the HUD
|
||||||
|
*/
|
||||||
SECONDARY,
|
SECONDARY,
|
||||||
|
/**
|
||||||
|
* The tertiary ability. Corresponds to the bottom small ring in the HUD.
|
||||||
|
*/
|
||||||
TERTIARY,
|
TERTIARY,
|
||||||
|
/**
|
||||||
|
* The passive primary ability. Appears in place of the primary ability whilst sneaking.
|
||||||
|
*/
|
||||||
PASSIVE;
|
PASSIVE;
|
||||||
|
|
||||||
public boolean isPassive() {
|
public boolean isPassive() {
|
||||||
|
|
Loading…
Reference in a new issue