voxelize/world/components/
flags.rs

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