Move utility modules to src/common

This commit is contained in:
Brendan Zabarauskas 2012-11-02 09:15:57 +10:00
parent aa304bedae
commit 02e3c70d65
3 changed files with 6 additions and 2 deletions

View file

@ -10,12 +10,16 @@
extern mod std;
pub mod matrix;
pub mod math;
pub mod num_util;
pub mod projection;
pub mod quaternion;
pub mod vector;
use common::*;
pub mod common {
pub mod math;
pub mod num_util;
}
#[test]
pub mod test {
pub mod test_matrix;