From ecde825407534570de5b20811f53e11b3f30cfad Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 16 Mar 2020 15:16:20 +0100 Subject: [PATCH] library: add core module --- src/core/mod.rs | 0 src/lib.rs | 2 ++ 2 files changed, 2 insertions(+) create mode 100644 src/core/mod.rs diff --git a/src/core/mod.rs b/src/core/mod.rs new file mode 100644 index 0000000..e69de29 diff --git a/src/lib.rs b/src/lib.rs index 4e7ec8f..e21a984 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,3 +3,5 @@ use bvh::nalgebra::{Point2, Point3, Vector3}; pub type Point2D = Point2; pub type Point = Point3; pub type Vector = Vector3; + +pub mod core;