Fixed Vec3 arguments being private

This commit is contained in:
blackfur 2021-02-10 19:32:28 +01:00
parent be693778e2
commit 609a5ecf6e

View file

@ -32,9 +32,9 @@ struct Connection {
#[derive(Clone, Copy)] #[derive(Clone, Copy)]
pub struct Vec3 { pub struct Vec3 {
x:i32, pub x:i32,
y:i32, pub y:i32,
z:i32 pub z:i32
} }
impl Connection { impl Connection {