aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/RenderSystem.h
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-11-08 12:16:41 +0100
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-11-08 12:16:41 +0100
commit2e0b75fc51c4ef025f6b74f7f1648d04039bb955 (patch)
tree8f77d29c65b5b4e99b17accc5aea48c1115e10e4 /src/crepe/system/RenderSystem.h
parent9f029bf458d43492093507f9b59a67f4f22c283c (diff)
fixed the includes and const settings
Diffstat (limited to 'src/crepe/system/RenderSystem.h')
-rw-r--r--src/crepe/system/RenderSystem.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crepe/system/RenderSystem.h b/src/crepe/system/RenderSystem.h
index 684776b..c5e674a 100644
--- a/src/crepe/system/RenderSystem.h
+++ b/src/crepe/system/RenderSystem.h
@@ -43,12 +43,12 @@ private:
/**
* \brief Clears the screen in preparation for rendering.
*/
- void clear_screen();
+ void clear_screen() const;
/**
* \brief Presents the rendered frame to the display.
*/
- void present_screen();
+ void present_screen() const;
/**
* \brief Updates the active camera used for rendering.
@@ -58,7 +58,7 @@ private:
/**
* \brief Renders all active sprites to the screen.
*/
- void render_sprites();
+ void render_sprites() const;
/**
* \todo Include color handling for sprites.