diff options
| -rw-r--r-- | src/crepe/system/RenderSystem.h | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/src/crepe/system/RenderSystem.h b/src/crepe/system/RenderSystem.h index 5fe24d7..d5385eb 100644 --- a/src/crepe/system/RenderSystem.h +++ b/src/crepe/system/RenderSystem.h @@ -36,9 +36,13 @@ private:  	//! Updates the active camera used for rendering.  	void update_camera(); -	//! Renders the whole screen +	//! Renders all the sprites and particles  	void render(); -	 + +	//! Renders all Text components +	void render_text(); + +private:  	/**  	 * \brief Renders all the particles on the screen from a given sprite.  	 * @@ -51,10 +55,6 @@ private:  	 */  	bool render_particle(const Sprite & sprite, const double & scale);  	/** -	 * \brief Renders all Text components -	 */ -	void render_text(); -	/**  	 * \brief renders a sprite with a Transform component on the screen  	 *  	 * \param sprite  the sprite component that holds all the data |