diff options
author | HampusM <hampus@hampusmat.com> | 2024-06-20 19:34:20 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-06-20 19:34:20 +0200 |
commit | cdc51e0c4369d1ef38ff8d6cc9440b91b2c90535 (patch) | |
tree | a2256eda409144d05114477ac1f0cf56e4730036 /engine/src/data_types.rs | |
parent | 0ca4deaa00d403ae5743434c7b63bc13b821c5ad (diff) |
feat(engine): make the matrix struct public
Diffstat (limited to 'engine/src/data_types.rs')
-rw-r--r-- | engine/src/data_types.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engine/src/data_types.rs b/engine/src/data_types.rs index 5cf15e4..b35839a 100644 --- a/engine/src/data_types.rs +++ b/engine/src/data_types.rs @@ -1,5 +1,4 @@ pub mod color; pub mod dimens; +pub mod matrix; pub mod vector; - -pub(crate) mod matrix; |