RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
PreloadRepository.java
1package com.osroyale.content.preloads;
2
3import com.osroyale.content.preloads.impl.*;
4
5import java.util.ArrayList;
6import java.util.List;
7
35
36public 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 */
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 */
72 PRELOADS.add(new InitiateNHPreload());
73
74 /* F2Ps */
75 PRELOADS.add(new F2PMeleePreload());
76 PRELOADS.add(new F2PRangePreload());
77 }
78}