mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-12-02 08:48:00 +01:00
17 lines
327 B
Java
17 lines
327 B
Java
package com.minelittlepony.pony.data;
|
|
|
|
public enum PonyGender implements ITriggerPixelMapped<PonyGender> {
|
|
MARE(0),
|
|
STALLION(0xffffff);
|
|
|
|
private int triggerValue;
|
|
|
|
PonyGender(int pixel) {
|
|
triggerValue = pixel;
|
|
}
|
|
|
|
@Override
|
|
public int getTriggerPixel() {
|
|
return triggerValue;
|
|
}
|
|
}
|