1 2 3 4 5 6 7 8 9 10 11 12 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; } }