bevy_entitiles 0.2.5

A 2d tilemap library for bevy. With many useful algorithms/tools built in.
use bevy::{ecs::component::Component, reflect::Reflect};

#[derive(Component, Reflect)]
pub struct LdtkLoadedLevel {
    pub identifier: String,
    pub iid: String,
}

#[derive(Component, Reflect)]
pub struct GlobalEntity;

#[derive(Component, Reflect, Hash, Eq, PartialEq, Clone)]
pub struct EntityIid(pub String);

#[derive(Component, Reflect)]
pub struct LayerIid(pub String);

#[derive(Component, Reflect)]
pub struct LevelIid(pub String);

#[derive(Component, Reflect)]
pub struct WorldIid(pub String);