RuneHive-Game
Loading...
Searching...
No Matches
RequiredRune.java
Go to the documentation of this file.
1package com.runehive.game.world.entity.combat.magic;
2
3public class RequiredRune {
4
5 private final MagicRune rune;
6 private final int amount;
7
9 this.rune = rune;
10 this.amount = amount;
11 }
12
13 public MagicRune getRune() {
14 return rune;
15 }
16
17 public int getAmount() {
18 return amount;
19 }
20
21 int getMainId() {
22 return rune.getMainId();
23 }
24
25 int[] getCombos() {
26 return rune.getCombos();
27 }
28
29 int[] getStaffs() {
30 return rune.getStaffs();
31 }
32}