Removed unused Sex enum.

This commit is contained in:
MobiusDevelopment 2019-08-24 11:27:51 +00:00
parent acf6b0e42a
commit 1f57042b4e
2 changed files with 5 additions and 28 deletions

View File

@ -28,12 +28,12 @@ public class PlayerAppearance
/** The hexadecimal Color of players name (white is 0xFFFFFF) */
private int _titleColor = 0xFFFF77;
public PlayerAppearance(byte Face, byte HColor, byte HStyle, boolean Sex)
public PlayerAppearance(byte face, byte hColor, byte hStyle, boolean sex)
{
_face = Face;
_hairColor = HColor;
_hairStyle = HStyle;
_sex = Sex;
_face = face;
_hairColor = hColor;
_hairStyle = hStyle;
_sex = sex;
}
public byte getFace()

View File

@ -1,23 +0,0 @@
/*
* This file is part of the L2J Mobius project.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.l2jmobius.gameserver.model.base;
public class Sex
{
public static final int MALE = 0;
public static final int FEMALE = 1;
}