attackables method

  1. @override
Iterable<WithLife> attackables({
  1. bool onlyVisible = false,
})
override

Used to get all "Attackables" or oly visibles.

Implementation

@override
Iterable<WithLife> attackables({bool onlyVisible = false}) {
  return query<WithLife>(onlyVisible: onlyVisible);
}