Guest User

Untitled

a guest
Jan 16th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public Filter<Npc> warriorFilter = new Filter<Npc>() {
  2. public boolean accept(Npc npc) {
  3. final int id = npc.getId();
  4. if (id == akwarrior)
  5. return (npc.getId() == akwarrior);
  6. }
  7. };
  8. }
Add Comment
Please, Sign In to add comment