diff --git a/lithium-loader/src/lib.rs b/lithium-loader/src/lib.rs index c36984e..77f0a0e 100644 --- a/lithium-loader/src/lib.rs +++ b/lithium-loader/src/lib.rs @@ -2,9 +2,9 @@ use anyhow::Result; use lithium_utils::{Vector2, Vector3}; pub struct Vertex { - position: Vector3, - uv: Vector2, - normal: Vector3, + pub position: Vector3, + pub uv: Vector2, + pub normal: Vector3, } impl Vertex {