Add placeholder for render

This commit is contained in:
Hanno Braun 2024-10-30 01:33:17 +01:00
parent 5664e97561
commit 1f04b89dbc
2 changed files with 5 additions and 0 deletions

View File

@ -1,9 +1,11 @@
mod export; mod export;
mod mesh; mod mesh;
mod model; mod model;
mod render;
fn main() -> anyhow::Result<()> { fn main() -> anyhow::Result<()> {
let mesh = model::model()?; let mesh = model::model()?;
export::export(&mesh)?; export::export(&mesh)?;
render::render(&mesh);
Ok(()) Ok(())
} }

View File

@ -0,0 +1,3 @@
use crate::mesh::Mesh;
pub fn render(_: &Mesh) {}