@@ -2,7 +2,7 @@ use specs::prelude::*; | |||
use crate::components::*; | |||
struct Animator; | |||
pub struct Animator; | |||
impl<'a> System<'a> for Animator { | |||
type SystemData = ( |
@@ -1,6 +1,7 @@ | |||
mod components; | |||
mod physics; | |||
mod animator; | |||
mod keyboard; | |||
use sdl2::pixels::Color; | |||
use sdl2::event::Event; |
@@ -2,7 +2,7 @@ use specs::prelude::*; | |||
use crate::components::*; | |||
struct Physics; | |||
pub struct Physics; | |||
impl<'a> System<'a> for Physics { | |||
type SystemData = (WriteStorage<'a, Position>, ReadStorage<'a, Velocity>); |