root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/model/gameobjects/player/StorageType.java
BROKER. Not implemented yet: - Selected broker items list sorting - String search - Some casual broker list sections Enjoy! :)
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.aionemu.gameserver.model.gameobjects.player;
/**
*
* @author kosyachok
*/
public enum StorageType
{
CUBE(0),
REGULAR_WAREHOUSE(1),
ACCOUNT_WAREHOUSE(2),
LEGION_WAREHOUSE(3),
BROKER(126),
MAILBOX(127);
private int id;
private StorageType(int id)
{
this.id = id;
}
public int getId()
{
return id;
}
} |