aboutsummaryrefslogtreecommitdiff
path: root/stockton-types/src/components/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'stockton-types/src/components/mod.rs')
-rw-r--r--stockton-types/src/components/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/stockton-types/src/components/mod.rs b/stockton-types/src/components/mod.rs
index 0dd9fe9..6f127c1 100644
--- a/stockton-types/src/components/mod.rs
+++ b/stockton-types/src/components/mod.rs
@@ -18,7 +18,7 @@
use crate::Vector3;
#[derive(Clone, Copy, Debug, PartialEq)]
-struct Transform {
+pub struct Transform {
/// Position of the object
pub position: Vector3,
@@ -27,7 +27,7 @@ struct Transform {
}
#[derive(Clone, Copy, Debug, PartialEq)]
-struct CameraSettings {
+pub struct CameraSettings {
/// FOV (radians)
pub fov: f32,