usespecs::{Component, NullStorage};/// A flag for entities (animals) in the world.
#[derive(Default, Component)]#[storage(NullStorage)]pubstructEntityFlag;/// A flag for clients in the world.
#[derive(Default, Component)]#[storage(NullStorage)]pubstructClientFlag;