diff options
| author | Irene Knapp <ireneista@irenes.space> | 2026-08-14 02:35:23 -0700 |
|---|---|---|
| committer | Irene Knapp <ireneista@irenes.space> | 2026-08-14 02:35:23 -0700 |
| commit | 5a4fad7b67a6ab477b230f4d8a70efed0e9100cb (patch) | |
| tree | 95f10f8106a225e0fcd4a1fbd0d0bca2ced51b38 /src/main.rs | |
| parent | 19e3a0f319fd04c1dde803796ec272d038b634f7 (diff) | |
move all the per-frame stuff into its own struct and file
Force-Push: yes Change-Id: I54b5c8fcc692616f83a37039a445796dddd4b7e4
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 607b0d8..b5af438 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,7 @@ #![deny(unsafe_code)] use crate::error::*; use crate::assets::asset; -use crate::graphics::{ Permanent, ForReinit, Render, Model, Texture }; +use crate::graphics::{ Permanent, ForReinit, Render, Texture }; use crate::graphics::scene::generate_scene_commands; use crate::graphics::window_dressing::{ WindowDressing, N_SIMULTANEOUS_FRAMES |