floem, gpui
This commit is contained in:
parent
e0a61dc680
commit
c6ba961faa
7
src/floem.rs
Normal file
7
src/floem.rs
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
use anyhow::Result;
|
||||||
|
|
||||||
|
|
||||||
|
pub(crate) fn main() -> Result<()> {
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
7
src/gpui.rs
Normal file
7
src/gpui.rs
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
|
||||||
|
use anyhow::Result;
|
||||||
|
|
||||||
|
pub(crate) fn main() -> Result<()> {
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
@ -1,3 +1,5 @@
|
|||||||
|
mod floem;
|
||||||
|
mod gpui;
|
||||||
mod iced;
|
mod iced;
|
||||||
|
|
||||||
use anyhow::{anyhow, Result};
|
use anyhow::{anyhow, Result};
|
||||||
@ -15,6 +17,8 @@ enum Command {
|
|||||||
IcedTetris,
|
IcedTetris,
|
||||||
Egui,
|
Egui,
|
||||||
Druid,
|
Druid,
|
||||||
|
Gpui,
|
||||||
|
Floem
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() -> Result<()> {
|
fn main() -> Result<()> {
|
||||||
@ -25,6 +29,8 @@ fn main() -> Result<()> {
|
|||||||
Command::IcedTetris => iced_tetris::tetris_main().map_err(|err| anyhow!(err)),
|
Command::IcedTetris => iced_tetris::tetris_main().map_err(|err| anyhow!(err)),
|
||||||
Command::Egui => egui_main(),
|
Command::Egui => egui_main(),
|
||||||
Command::Druid => druid_main(),
|
Command::Druid => druid_main(),
|
||||||
|
Command::Gpui => gpui::main(),
|
||||||
|
Command::Floem => floem::main(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user