package com.aionemu.gameserver.services.player; /** * @author Source */ public class PlayerMailboxState { public static final byte CLOSED = (byte) 0x00; public static final byte REGULAR = (byte) 0x01; public static final byte EXPRESS = (byte) 0x02; }