diff options
author | Futuremappermydud <54294576+Futuremappermydud@users.noreply.github.com> | 2023-07-04 20:19:40 -0400 |
---|---|---|
committer | Futuremappermydud <54294576+Futuremappermydud@users.noreply.github.com> | 2023-07-04 20:19:40 -0400 |
commit | 64e1de1f4f857d4c126b7610b008120a61f118d2 (patch) | |
tree | 78c692b5ee7d1b5015a4eb8df737e4ab587726ab /src/main/java/me/xmrvizzy/skyblocker/utils/title/Title.java | |
parent | 379cd758fb6895c4e88d7cb8245f79bde1494f34 (diff) | |
download | Skyblocker-64e1de1f4f857d4c126b7610b008120a61f118d2.tar.gz Skyblocker-64e1de1f4f857d4c126b7610b008120a61f118d2.tar.bz2 Skyblocker-64e1de1f4f857d4c126b7610b008120a61f118d2.zip |
New Slayer Stuff
Implement TitleContainer for stacking titles.
Implement Mania Indicator to show the player when they are standing on green terracotta during mania.
Diffstat (limited to 'src/main/java/me/xmrvizzy/skyblocker/utils/title/Title.java')
-rw-r--r-- | src/main/java/me/xmrvizzy/skyblocker/utils/title/Title.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/me/xmrvizzy/skyblocker/utils/title/Title.java b/src/main/java/me/xmrvizzy/skyblocker/utils/title/Title.java new file mode 100644 index 00000000..44a636d7 --- /dev/null +++ b/src/main/java/me/xmrvizzy/skyblocker/utils/title/Title.java @@ -0,0 +1,13 @@ +package me.xmrvizzy.skyblocker.utils.title; + +public class Title { + public String text = ""; + public boolean active = true; + public int color; + public float lastX = 0; + + public Title(String text, int color) { + this.text = text; + this.color = color; + } +} |