update method

GameEntity update(
  1. double delta
)

Updates the internal state of this game entity. Normally called by {@link EntityManager#update} in each simulation step.

Implementation

GameEntity update(double delta) {
	return this;
}