test
This commit is contained in:
18
src/main/java/ee/futur/vorkath/enums/RunePouch.java
Normal file
18
src/main/java/ee/futur/vorkath/enums/RunePouch.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package ee.futur.vorkath.enums;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
|
||||
@Getter
|
||||
@RequiredArgsConstructor
|
||||
public enum RunePouch {
|
||||
RUNE_POUCH("Rune pouch"),
|
||||
DIVINE_RUNE_POUCH("Divine rune pouch");
|
||||
|
||||
private final String runePouchName;
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return runePouchName;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user