root/trunk/AE-go_GameServer/src/com/aionemu/gameserver/model/gameobjects/player/StorageType.java

User picture

Author: kosyachok

Revision: 2596 («Previous)


File Size: 468 Bytes

(May 03, 2010 10:25 UTC) About 2 years ago

BROKER.

Not implemented yet:
- Selected broker items list sorting
- String search
- Some casual broker list sections

Enjoy! :)

 
Show/hide line numbers
/*
 * 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;
	}
}