Create wgpu surface

This commit is contained in:
Guilherme Werner
2024-02-16 19:56:32 -03:00
parent feae6c0d9d
commit 4132183bd3
4 changed files with 221 additions and 23 deletions

View File

@ -1,5 +1,8 @@
use anyhow::Result;
use renderer::run;
fn main() {
run();
#[tokio::main]
async fn main() -> Result<()> {
run().await;
Ok(())
}