diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-10-17 23:38:28 -0400 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-10-18 00:04:48 -0400 |
| commit | 0410f8a14cb5c1571ea524dde81c5ac850b914c4 (patch) | |
| tree | 813ee48d11dd769ff42930b514409233037df0e1 /graphics/src/render.rs | |
| parent | Added enemy concepts and updated some info (diff) | |
| download | DungeonCrawl-0410f8a14cb5c1571ea524dde81c5ac850b914c4.tar.gz DungeonCrawl-0410f8a14cb5c1571ea524dde81c5ac850b914c4.tar.bz2 DungeonCrawl-0410f8a14cb5c1571ea524dde81c5ac850b914c4.zip | |
graphicsL add input functionality to
Diffstat (limited to 'graphics/src/render.rs')
| -rw-r--r-- | graphics/src/render.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/src/render.rs b/graphics/src/render.rs index 68a7b68..1bb32ee 100644 --- a/graphics/src/render.rs +++ b/graphics/src/render.rs @@ -1,5 +1,5 @@ //! The `render` module contains the structures for displaying -//! the game, with each frame represented by a `Renderer` and +//! the game, with each frame represented by a `Renderer` and //! frame specific information in `FrameInfo`. use dungeon::{Dungeon, Entity}; @@ -65,7 +65,7 @@ impl<'a> Renderer<'a> { } /// Draws an entire frame - /// + /// /// # Examples /// ```no_run /// use dungeon::Dungeon; |