diff options
author | Julian T <julian@jtle.dk> | 2021-02-10 23:06:48 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-02-10 23:06:48 +0100 |
commit | 49c6adb0db70ffc30eaac33b66eacf7574b34e26 (patch) | |
tree | 60f828ce8abf962fe2d88fdeb4e04db1d7663253 /src/world/shapes/mod.rs | |
parent | 3a144c8c1fc83150fc06d792082db5cc4bce3cc5 (diff) |
Fixed most clippy warnings
Diffstat (limited to 'src/world/shapes/mod.rs')
-rw-r--r-- | src/world/shapes/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/world/shapes/mod.rs b/src/world/shapes/mod.rs new file mode 100644 index 0000000..d7583ad --- /dev/null +++ b/src/world/shapes/mod.rs @@ -0,0 +1,4 @@ +mod sphere; + +pub use sphere::Sphere; + |