Skip to content

Commit

Permalink
Merge pull request #719 from jaytaph/prelude
Browse files Browse the repository at this point in the history
Added prelude for connecting to external applications
  • Loading branch information
jaytaph authored Dec 19, 2024
2 parents b7068d6 + f3eaba0 commit b00c113
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
pub mod prelude;

mod engine;

#[cfg(target_arch = "wasm32")]
Expand Down
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_renderer::draw::TreeDrawerImpl;
pub use gosub_rendering::render_tree::RenderTree;
pub use gosub_taffy::TaffyLayouter;

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

0 comments on commit b00c113

Please sign in to comment.