#include <SpriteManager.h>
Inheritance diagram for IDrawableObject:
Public Methods | |
virtual bool | Draw ()=0 |
Draw the object on the screen. | |
virtual bool | NeedToDraw ()=0 |
Determinates if an object needs to be drawn. |
Definition at line 74 of file SpriteManager.h.
|
Draw the object on the screen. Draw the object to the screen in its current state returns true if the object was drawn, or false if it was not drawn (this is not necessarily an error - the object may have determinated that it was obscured by others) |
|
Determinates if an object needs to be drawn. Returns false if the object does not need to be drawn (i.e. off screen) |