aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/cow_model/mod.rs
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-06-13 18:36:24 -0400
committerbnewbold <bnewbold@robocracy.org>2016-06-13 18:36:24 -0400
commit9f8c9bd56c99273b5e59992fd6620b3aabfd3655 (patch)
tree6a8f7d1c1ef6ad5e901605528a7c5a268f812df2 /src/bin/cow_model/mod.rs
parent0a86f0f0b7e74c2c9a09d7cef4c722e4024fcc6d (diff)
downloadexuberant-hacks-9f8c9bd56c99273b5e59992fd6620b3aabfd3655.tar.gz
exuberant-hacks-9f8c9bd56c99273b5e59992fd6620b3aabfd3655.zip
refactor exuberantbovines into src/bin
Diffstat (limited to 'src/bin/cow_model/mod.rs')
-rw-r--r--src/bin/cow_model/mod.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/bin/cow_model/mod.rs b/src/bin/cow_model/mod.rs
new file mode 100644
index 0000000..c0fdb01
--- /dev/null
+++ b/src/bin/cow_model/mod.rs
@@ -0,0 +1,15 @@
+
+mod cow_vertex;
+mod cow_face;
+mod cow_hide;
+mod cow_hoofs;
+mod cow_horns;
+mod cow_tail;
+mod cow_udder;
+
+pub use self::cow_face::COW_FACE_VERTICES;
+pub use self::cow_hide::COW_HIDE_VERTICES;
+pub use self::cow_hoofs::COW_HOOFS_VERTICES;
+pub use self::cow_horns::COW_HORNS_VERTICES;
+pub use self::cow_tail::COW_TAIL_VERTICES;
+pub use self::cow_udder::COW_UDDER_VERTICES;