
Anyways onto the main topic:
My rpg "core" engine works on the concept of a kernal which manages tasks that the rpg system (or os as i like to call it

Now each task is derived from a base class (ITask) and adds it self to the engines kernal by calling the CKernal::AddTask(ITask*) and this registers the task with the engine.
Once all set up is complete the engine then calls CKernal::BeginTaskLoop()
this loops through all the tasks until each task is complete (the ITask interface provides the means to detect this (IsDone() method).
This is my tried and tested methodolgy for my engine and I was wondering, do you think that this super cool graphics engine you have (:P) will be able to work in this sort of fasion (ie be able to be used as a ITask derived task), coz i really dont want to rewrite my engine design.... again.......
