small change in gender enum

This commit is contained in:
ingmargoudt 2017-03-06 10:18:16 +01:00
parent 80814b457c
commit 6d4c388c5e
7 changed files with 37 additions and 14 deletions

View 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;
}
}