RuneHive-Game
Loading...
Searching...
No Matches
ToolWriter.java
Go to the documentation of this file.
1package com.runehive.content.writer.impl;
2
3import com.runehive.content.writer.InterfaceWriter;
4import com.runehive.game.world.entity.mob.player.Player;
5
6/**
7 * Class handles writing on the quest tab interface.
8 *
9 * @author Daniel
10 */
11public class ToolWriter extends InterfaceWriter {
12
13 private final String[] text = {
14 "View My Profile",
15 "Activity Logger",
16 "Title Manager",
17 "Drop Display",
18 "Drop Simulator",
19 "Game Records",
20 };
21
23 super(player);
24 }
25
26 @Override
27 protected int startingIndex() {
28 return 35451;
29 }
30
31 @Override
32 protected String[] text() {
33 return text;
34 }
35
36 @Override
37 protected int[][] color() {
38 return null;
39 }
40
41 @Override
42 protected int[][] font() {
43 return null;
44 }
45
46}
This class represents a character controlled by a player.
Definition Player.java:125