Skip to content

Commit

Permalink
Added prelude for connecting to external applications
Browse files Browse the repository at this point in the history
  • Loading branch information
jaytaph committed Dec 19, 2024
1 parent b7068d6 commit 1001fac
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
pub mod prelude;

mod engine;

#[cfg(target_arch = "wasm32")]
mod wasm;

15 changes: 15 additions & 0 deletions src/prelude.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
pub use gosub_shared::traits::config::*;

pub use gosub_css3::system::Css3System;

pub use gosub_html5::document::builder::DocumentBuilderImpl;
pub use gosub_html5::document::document_impl::DocumentImpl;
pub use gosub_html5::document::fragment::DocumentFragmentImpl;
pub use gosub_html5::parser::Html5Parser;

pub use gosub_taffy::TaffyLayouter;
pub use gosub_renderer::draw::TreeDrawerImpl;
pub use gosub_rendering::render_tree::RenderTree;

pub use gosub_cairo::CairoBackend;
pub use gosub_vello::VelloBackend;

0 comments on commit 1001fac

Please sign in to comment.