appel wrote:
wakkana12 wrote:
Thanks for the info.. im starting the development already to see how will it go.
is there any docu. about bags and immutable bags? how they are used and what are them for?
They are really just unordered lists, as raw as possible to make them as fast as possible.
great! thanks!
yet another question..
On the java doc it says that the method
Code:
protected abstract void process(Entity e)
and
Code:
protected final void processEntities(ImmutableBag<Entity> entities)
was for Processing an entity this system is interested in.
but how can i assign which entity the system should be interested in? was the
Code:
Aspect.getAspectFor()
method for it?
sorry if its a noob question.. i was just following the Tanks source.