Fixed Vec3 arguments being private

master
blackfur 2021-02-10 19:32:28 +01:00
parent 797401b381
commit ce390ad6b5
1 changed files with 3 additions and 3 deletions

View File

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