addActor method

Application addActor(
  1. Actor actor
)

Implementation

Application addActor(Actor actor) {
  _actors.add(actor);
  return this;
}