1 2 3 4 5 6 7 8
use specs::{Component, NullStorage}; #[derive(Default)] pub struct Init; impl Component for Init { type Storage = NullStorage<Self>; }
1 2 3 4 5 6 7 8
use specs::{Component, NullStorage}; #[derive(Default)] pub struct Init; impl Component for Init { type Storage = NullStorage<Self>; }