Just spent a whole hour on a stupid problem:
//... (Storeable is an interface)
HashMap<String, Class<? extends Storeable>> types = new HashMap<String, Class<? extends Storeable>>();
//... (object is an instance of a class that implements Storeable)
types.add(object.getTag(), object.getClass());
//...
Thought it was a problem with the …
Now, you might remember (or not, since it has been quite a while since I
posted) that I had a few projects running - The PI Mineshooter
thingy, sadly abandoned, the Zombiehunt game, still there somewhere,
VSGE, still there to …
I really want to implement drawing order in my node based
graphics engine in vsge.
Node based meaning, that I actually have a nodetree, each node
containing a pointer to the parent …