summaryrefslogtreecommitdiff
path: root/src/components.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components.rs')
-rw-r--r--src/components.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components.rs b/src/components.rs
index 18de7f0..50cb13f 100644
--- a/src/components.rs
+++ b/src/components.rs
@@ -22,16 +22,16 @@ impl Position {
}
impl Component for Position {
- type Storage = FlaggedStorage<Self, VecStorage<Self>>;
+ type Storage = FlaggedStorage<Self, VecStorage<Self>>;
}
#[derive(Debug, Clone)]
pub struct Visible {
- pub sprite: String,
- pub height: f32
+ pub sprite: String,
+ pub height: f32
}
impl Component for Visible {
- type Storage = FlaggedStorage<Self, VecStorage<Self>>;
+ type Storage = FlaggedStorage<Self, VecStorage<Self>>;
}
#[derive(Component, Debug)]