Update name of function

This commit is contained in:
Hanno Braun 2024-10-30 02:23:37 +01:00
parent bf2034f74a
commit ce19e97253
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ use winit::{
use crate::mesh::Mesh;
pub fn render(_: &Mesh) -> anyhow::Result<()> {
pub fn run(_: &Mesh) -> anyhow::Result<()> {
let event_loop = EventLoop::new()?;
let mut app = App::default();

View File

@ -7,7 +7,7 @@ fn main() -> anyhow::Result<()> {
let mesh = model::model()?;
export::export(&mesh)?;
app::render(&mesh)?;
app::run(&mesh)?;
Ok(())
}