Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
use anyhow::Result;
|
||||
use root_view::RootView;
|
||||
pub mod root_view;
|
||||
|
||||
extern crate galaxyui;
|
||||
use galaxyui::platform;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
let app_builder =
|
||||
platform::AppBuilder::new(platform::AppCallbacks::default(), Box::new(()), None);
|
||||
let _ = app_builder.run(move |ctx| {
|
||||
ctx.add_window(galaxyui::AddWindowOptions::default(), |_| RootView::new());
|
||||
});
|
||||
|
||||
Ok(())
|
||||
}
|
||||
Reference in New Issue
Block a user