diff options
author | Minijackson <minijackson@riseup.net> | 2022-12-29 01:40:08 +0100 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2022-12-29 01:40:08 +0100 |
commit | 9c15b76c5a6355902b2a105a7c6ee93f6b5016dc (patch) | |
tree | 44cacfe756169f7b3d3cc23f875864683ba2af74 /core/src/lib.rs | |
parent | 30f7d39ca2ed4590b5d356b1a4c024d11156a383 (diff) | |
download | diaphragm-9c15b76c5a6355902b2a105a7c6ee93f6b5016dc.tar.gz diaphragm-9c15b76c5a6355902b2a105a7c6ee93f6b5016dc.zip |
WIP v2: text works, primitives works in Lua
Diffstat (limited to 'core/src/lib.rs')
-rw-r--r-- | core/src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/lib.rs b/core/src/lib.rs index 57e45df..f949cd9 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs | |||
@@ -2,7 +2,7 @@ | |||
2 | #![deny(unsafe_code)] | 2 | #![deny(unsafe_code)] |
3 | 3 | ||
4 | pub mod colors; | 4 | pub mod colors; |
5 | mod complex_shapes; | 5 | // mod complex_shapes; |
6 | pub mod core_shapes; | 6 | pub mod core_shapes; |
7 | mod rendering; | 7 | mod rendering; |
8 | mod runtime; | 8 | mod runtime; |
@@ -11,9 +11,9 @@ pub mod styles; | |||
11 | pub mod text; | 11 | pub mod text; |
12 | pub mod types; | 12 | pub mod types; |
13 | 13 | ||
14 | pub use complex_shapes::{ | 14 | // pub use complex_shapes::{ |
15 | ComplexShape, DrawResult, Drawable, DrawableBuilder, DynClone, DynDrawable, | 15 | // ComplexShape, DrawResult, Drawable, DrawableBuilder, DynClone, DynDrawable, |
16 | }; | 16 | // }; |
17 | pub use rendering::Renderer; | 17 | pub use rendering::Renderer; |
18 | pub use runtime::Runtime; | 18 | pub use runtime::Runtime; |
19 | pub use solving::{SolverContext, SolverModel}; | 19 | pub use solving::{SolverContext, SolverModel}; |