RuneHive-Game
Loading...
Searching...
No Matches
ExchangeSessionType.java
Go to the documentation of this file.
1package com.runehive.game.world.entity.mob.player.exchange;
2
3/**
4 * @author <a href="http://www.rune-server.org/members/stand+up/">Stand Up</a>
5 * @since 23-1-2017.
6 */
7public enum ExchangeSessionType {
8 TRADE("trade"),
9 DUEL("duel");
10
11 public final String name;
12
14 this.name = name;
15 }
16}