RuneHive-Game
Loading...
Searching...
No Matches
VaultCurrency.java
Go to the documentation of this file.
1package com.runehive.game.world.items.containers.bank;
2
3/**
4 * All the bank vault currency types.
5 *
6 * @author Daniel
7 */
8public enum VaultCurrency {
9 COINS("Coins", 995),
10 BLOOD_MONEY("Blood Money", 13307);
11
12 public final String name;
13 public final int id;
14
15 VaultCurrency(String name, int id) {
16 this.name = name;
17 this.id = id;
18 }
19
20}