summaryrefslogtreecommitdiff
path: root/engine/src/file_format/wavefront.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2024-04-25 20:48:39 +0200
committerHampusM <hampus@hampusmat.com>2024-05-01 19:18:03 +0200
commit9530d22cf5369ceba369487fff1b85376da64657 (patch)
tree5beeaa594e77a32877336e119035197e8cd5ac9d /engine/src/file_format/wavefront.rs
parent33f7772ddddf2a1c2bfefc50ef39f123df8af3e4 (diff)
feat(engine): add basic Wavefront obj file parsing
Diffstat (limited to 'engine/src/file_format/wavefront.rs')
-rw-r--r--engine/src/file_format/wavefront.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/engine/src/file_format/wavefront.rs b/engine/src/file_format/wavefront.rs
new file mode 100644
index 0000000..b23706a
--- /dev/null
+++ b/engine/src/file_format/wavefront.rs
@@ -0,0 +1,3 @@
+pub mod obj;
+
+mod common;