RuneHive-Game
Loading...
Searching...
No Matches
Preload.java
Go to the documentation of this file.
1
package
com.runehive.content.preloads;
2
3
4
import
com.runehive.content.skill.impl.magic.Spellbook;
5
import
com.runehive.game.world.items.Item;
6
7
public
interface
Preload
{
8
9
String
title
();
10
11
Spellbook
spellbook
();
12
13
Item
[]
equipment
();
14
15
Item
[]
inventory
();
16
17
int
[]
skills
();
18
19
}
com.runehive.game.world.items.Item
The container class that represents an item that can be interacted with.
Definition
Item.java:21
com.runehive.content.skill.impl.magic.Spellbook
The in-game spellbooks for players.
Definition
Spellbook.java:8
com.runehive.content.preloads.Preload
Definition
Preload.java:7
com.runehive.content.preloads.Preload.skills
int[] skills()
com.runehive.content.preloads.Preload.spellbook
Spellbook spellbook()
com.runehive.content.preloads.Preload.title
String title()
com.runehive.content.preloads.Preload.equipment
Item[] equipment()
com.runehive.content.preloads.Preload.inventory
Item[] inventory()