summaryrefslogtreecommitdiff
path: root/src/mass.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mass.rs')
-rw-r--r--src/mass.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mass.rs b/src/mass.rs
index 762c9ab..f38ab6d 100644
--- a/src/mass.rs
+++ b/src/mass.rs
@@ -5,7 +5,7 @@ use self::rand::distributions::Range;
use self::rand::distributions::Sample;
use storage::Storage;
-use module::{Module, ModuleType};
+use module::Module;
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Mass {
@@ -61,8 +61,8 @@ impl Mass {
Mass {
mass_type : ship,
- position : (0.0,0.0,0.0),
- velocity : (0.0,0.0,0.0),
+ position : (0.0, 0.0, 0.0),
+ velocity : (0.0, 0.0, 0.0),
}
}