mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 05:47:59 +01:00
15 lines
250 B
Java
15 lines
250 B
Java
package com.minelittlepony.unicopia;
|
|
|
|
public enum Availability {
|
|
DEFAULT,
|
|
COMMANDS,
|
|
NONE;
|
|
|
|
public boolean isSelectable() {
|
|
return this == DEFAULT;
|
|
}
|
|
|
|
public boolean isGrantable() {
|
|
return this != NONE;
|
|
}
|
|
}
|