Advertisement
Guest User

Untitled

a guest
Nov 17th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. /*
  2. * Decompiled with CFR 0_122.
  3. */
  4. package me.arithmo.module.impl.render;
  5.  
  6. import me.arithmo.event.Event;
  7. import me.arithmo.event.RegisterEvent;
  8. import me.arithmo.event.impl.EventMotion;
  9. import me.arithmo.event.impl.EventRenderGui;
  10. import me.arithmo.module.Module;
  11. import me.arithmo.module.data.ModuleData;
  12.  
  13. public class ESP
  14. extends Module {
  15. public ESP(ModuleData data) {
  16. super(data);
  17. }
  18.  
  19. @RegisterEvent(events={EventRenderGui.class, EventMotion.class})
  20. public void onEvent(Event event) {
  21. if (event instanceof EventRenderGui) {
  22. EventRenderGui eventRenderGui = (EventRenderGui)event;
  23. }
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement