diff options
| author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-17 14:19:41 +0100 | 
|---|---|---|
| committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-17 14:19:41 +0100 | 
| commit | daff506e3b941a8bca8f6e785944fa5071a7130c (patch) | |
| tree | 128462ca50af37a62155d56971472ff921afb394 /src/crepe | |
| parent | e70c2a3a4a7f636f190cc64792029cadd3613337 (diff) | |
adjusted comments
Diffstat (limited to 'src/crepe')
| -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  |