diff options
author | HampusM <hampus@hampusmat.com> | 2024-02-18 19:06:44 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-02-18 19:06:44 +0100 |
commit | 12e0f5ffffcaa36cce3cd4fecc007b9a2955ff23 (patch) | |
tree | dab821bd25eaf3ee5eea98adefb6edd5585db9fa /engine/src/lib.rs | |
parent | de5c3ff1320ea0f0452afde4c1f42676d9eeab52 (diff) |
refactor(engine): add mesh struct used by Object
Diffstat (limited to 'engine/src/lib.rs')
-rw-r--r-- | engine/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engine/src/lib.rs b/engine/src/lib.rs index f84c0ad..fdd79a4 100644 --- a/engine/src/lib.rs +++ b/engine/src/lib.rs @@ -24,6 +24,7 @@ pub mod color; pub mod lighting; pub mod material; pub mod math; +pub mod mesh; pub mod object; pub mod texture; pub mod vector; |