summaryrefslogtreecommitdiff
path: root/src/mass.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mass.rs')
-rw-r--r--src/mass.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mass.rs b/src/mass.rs
new file mode 100644
index 0000000..d1f9d3e
--- /dev/null
+++ b/src/mass.rs
@@ -0,0 +1,7 @@
+pub trait Mass {
+ fn new(name : &str, location : (isize, isize, isize)) -> Self where Self: Sized;
+ fn get_name(&self) -> &String;
+ fn get_location(&self) -> (isize, isize, isize);
+ fn give_location(&mut self, location : (isize, isize, isize));
+ fn serialize(&self) -> String;
+}