1
2
3
4
5
6
7
8
9
10
11
use specs::{Component, NullStorage};

/// A flag for entities (animals) in the world.
#[derive(Default, Component)]
#[storage(NullStorage)]
pub struct EntityFlag;

/// A flag for clients in the world.
#[derive(Default, Component)]
#[storage(NullStorage)]
pub struct ClientFlag;