1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-04 10:34:11 +02:00
This commit is contained in:
Robin Appelman 2019-02-25 00:30:59 +01:00
commit 4ac2a3cfc6
20 changed files with 907 additions and 0 deletions

10
src/demo/vector.rs Normal file
View file

@ -0,0 +1,10 @@
pub struct Vector {
pub x: f32,
pub y: f32,
pub z: f32,
}
pub struct VectorXY {
pub x: f32,
pub y: f32,
}