Skip to content

Instantly share code, notes, and snippets.

View SuperSkidder's full-sized avatar
🤡

SuperSkidder SuperSkidder

🤡
View GitHub Profile
package me.superskidder.fpsmaster.client.gui.notification;
import java.util.ArrayList;
public class NotificationsManager {
public ArrayList<Notification> notifications = new ArrayList<Notification>();
public void add(Notification noti) {
noti.y = notifications.size() * 25;
notifications.add(noti);
@EventHandler
private void onRender3D(EventRender3D e) {
if (target != null && esp.getValue()) {
drawShadow(target, e.getPartialTicks(), yPos, direction);
drawCircle(target, e.getPartialTicks(), yPos);
}
}
TimerUtil timerUtil = new TimerUtil();
@EventHandler
private void onRender2D(EventRender2D e) {