forked from External/mage
small change in gender enum
This commit is contained in:
parent
80814b457c
commit
6d4c388c5e
7 changed files with 37 additions and 14 deletions
26
Mage/src/main/java/mage/abilities/Gender.java
Normal file
26
Mage/src/main/java/mage/abilities/Gender.java
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
package mage.abilities;
|
||||
|
||||
/**
|
||||
* Created by IGOUDT on 5-3-2017.
|
||||
*/
|
||||
public enum Gender {
|
||||
MALE("his", "him"), FEMALE("her", "her");
|
||||
|
||||
String personalPronoun;
|
||||
String possesivePronoun;
|
||||
|
||||
Gender(String possessive, String personal) {
|
||||
personalPronoun = personal;
|
||||
possesivePronoun = possessive;
|
||||
}
|
||||
|
||||
public String getPersonalPronoun() {
|
||||
return personalPronoun;
|
||||
}
|
||||
|
||||
public String getPossesivePronoun() {
|
||||
return possesivePronoun;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue