-
-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #719 from jaytaph/prelude
Added prelude for connecting to external applications
- Loading branch information
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
pub mod prelude; | ||
|
||
mod engine; | ||
|
||
#[cfg(target_arch = "wasm32")] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |