Add the structure to the update list. It will stay on this list, until its update() method returns false. @note This can be called on different threads.
| 68 | /// |
| 69 | /// @note This can be called on different threads. |
| 70 | virtual void add( IPolled* ptr ) |
| 71 | { |
| 72 | mUpdateList.pushBack( ptr ); |
| 73 | } |
| 74 | }; |
| 75 | |
| 76 | //-------------------------------------------------------------------------- |