floem, gpui

This commit is contained in:
Greg Shuflin 2024-10-20 19:44:47 -07:00
parent e0a61dc680
commit c6ba961faa
3 changed files with 20 additions and 0 deletions

7
src/floem.rs Normal file
View File

@ -0,0 +1,7 @@
use anyhow::Result;
pub(crate) fn main() -> Result<()> {
Ok(())
}

7
src/gpui.rs Normal file
View File

@ -0,0 +1,7 @@
use anyhow::Result;
pub(crate) fn main() -> Result<()> {
Ok(())
}

View File

@ -1,3 +1,5 @@
mod floem;
mod gpui;
mod iced;
use anyhow::{anyhow, Result};
@ -15,6 +17,8 @@ enum Command {
IcedTetris,
Egui,
Druid,
Gpui,
Floem
}
fn main() -> Result<()> {
@ -25,6 +29,8 @@ fn main() -> Result<()> {
Command::IcedTetris => iced_tetris::tetris_main().map_err(|err| anyhow!(err)),
Command::Egui => egui_main(),
Command::Druid => druid_main(),
Command::Gpui => gpui::main(),
Command::Floem => floem::main(),
}
}