Ideas to make grenade?
private int myRange; //Other instance variables, constructors, and methods ... /** * @return All the actors around me up to my range */ public List<Actors> ActorsAroundMe() { return getObjectsInRange(myRange, Actor.class); } ...