1use specs::{Component, NullStorage};
23/// A flag for entities (animals) in the world.
4#[derive(Default, Component)]
5#[storage(NullStorage)]
6pub struct EntityFlag;
78/// A flag for clients in the world.
9#[derive(Default, Component)]
10#[storage(NullStorage)]
11pub struct ClientFlag;