summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authortom barrett <spalf0@gmail.com>2018-04-13 03:39:24 -0500
committertom barrett <spalf0@gmail.com>2018-04-13 03:39:24 -0500
commit4d7a7e368a3f0a6b1261e1b9180a2647eb158047 (patch)
tree50ead62fdc5e22e839920dae44a02dc25b247678 /src/lib.rs
parent74c7e70096ebcb0cab10f24ce1d348198d583161 (diff)
moved over to mass struct with enum for types
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d666cb8..97d506d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,16 +1,13 @@
#[macro_use]
extern crate serde_derive;
-#[macro_use]
-extern crate downcast;
pub mod mass;
pub mod item;
-pub mod ship;
pub mod math;
pub mod module;
+pub mod mining;
pub mod client;
pub mod server;
pub mod storage;
-pub mod astroid;
pub mod targeting;
pub mod connection;