summaryrefslogtreecommitdiffstats
path: root/packages/svgbob/src/map.rs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/svgbob/src/map.rs')
-rw-r--r--packages/svgbob/src/map.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/svgbob/src/map.rs b/packages/svgbob/src/map.rs
new file mode 100644
index 0000000..e3ed914
--- /dev/null
+++ b/packages/svgbob/src/map.rs
@@ -0,0 +1,10 @@
+pub use ascii_map::ASCII_PROPERTIES;
+pub use circle_map::CIRCLES_SPAN;
+pub use circle_map::DIAMETER_CIRCLE;
+pub use unicode_map::{
+ FRAGMENTS_UNICODE, UNICODE_FRAGMENTS, UNICODE_PROPERTIES,
+};
+
+pub(in crate) mod ascii_map;
+pub(in crate) mod circle_map;
+pub(in crate) mod unicode_map;