RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
PreloadRepository.java
1
package
com.osroyale.content.preloads;
2
3
import
com.osroyale.content.preloads.impl.*;
4
5
import
java.util.ArrayList;
6
import
java.util.List;
7
35
36
public
class
PreloadRepository
{
37
39
public
static
List<Preload>
PRELOADS
=
new
ArrayList<>();
40
42
public
static
final
int
43
CAPE
= 1,
44
HAT = 2,
45
ROBE_TOP = 3,
46
ROBE_BOTTOM = 4,
47
GOD_CAPE = 5,
48
GOD_BOOK = 6,
49
MYSTIC_TOP = 7,
50
MYSTIC_BOTTOM = 8;
51
53
public
static
void
declare
() {
54
/* Mains */
55
PRELOADS
.add(
new
MainMeleePreload
());
56
PRELOADS
.add(
new
MainRangePreload
());
57
PRELOADS
.add(
new
MainNHPreload
());
58
59
/* Zerkers */
60
PRELOADS
.add(
new
ZerkerMeleePreload
());
61
PRELOADS
.add(
new
ZerkerRangePreload
());
62
PRELOADS
.add(
new
ZerkerNHPreload
());
63
64
/* Pures */
65
PRELOADS
.add(
new
PureMeleePreload
());
66
PRELOADS
.add(
new
PureRangePreload
());
67
PRELOADS
.add(
new
PureNHPreload
());
68
69
/* Initiates */
70
PRELOADS
.add(
new
InitiateMeleePreload
());
71
PRELOADS
.add(
new
InitiateRangePreload
());
72
PRELOADS
.add(
new
InitiateNHPreload
());
73
74
/* F2Ps */
75
PRELOADS
.add(
new
F2PMeleePreload
());
76
PRELOADS
.add(
new
F2PRangePreload
());
77
}
78
}
com.osroyale.content.preloads.PreloadRepository
Definition
PreloadRepository.java:36
com.osroyale.content.preloads.PreloadRepository.PRELOADS
static List< Preload > PRELOADS
Definition
PreloadRepository.java:39
com.osroyale.content.preloads.PreloadRepository.CAPE
static final int CAPE
Definition
PreloadRepository.java:43
com.osroyale.content.preloads.PreloadRepository.declare
static void declare()
Definition
PreloadRepository.java:53
com.osroyale.content.preloads.impl.F2PMeleePreload
Definition
F2PMeleePreload.java:46
com.osroyale.content.preloads.impl.F2PRangePreload
Definition
F2PRangePreload.java:46
com.osroyale.content.preloads.impl.InitiateMeleePreload
Definition
InitiateMeleePreload.java:46
com.osroyale.content.preloads.impl.InitiateNHPreload
Definition
InitiateNHPreload.java:46
com.osroyale.content.preloads.impl.InitiateRangePreload
Definition
InitiateRangePreload.java:46
com.osroyale.content.preloads.impl.MainMeleePreload
Definition
MainMeleePreload.java:46
com.osroyale.content.preloads.impl.MainNHPreload
Definition
MainNHPreload.java:46
com.osroyale.content.preloads.impl.MainRangePreload
Definition
MainRangePreload.java:45
com.osroyale.content.preloads.impl.PureMeleePreload
Definition
PureMeleePreload.java:46
com.osroyale.content.preloads.impl.PureNHPreload
Definition
PureNHPreload.java:46
com.osroyale.content.preloads.impl.PureRangePreload
Definition
PureRangePreload.java:46
com.osroyale.content.preloads.impl.ZerkerMeleePreload
Definition
ZerkerMeleePreload.java:46
com.osroyale.content.preloads.impl.ZerkerNHPreload
Definition
ZerkerNHPreload.java:46
com.osroyale.content.preloads.impl.ZerkerRangePreload
Definition
ZerkerRangePreload.java:47