amethyst-editor-sync 0.4.0

Allows an Amethyst game to connect to an editor.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod editor_receiver;
mod editor_sender;
mod entity_handler;
mod read_component;
mod read_resource;
mod write_component;
mod write_resource;

pub(crate) use self::editor_receiver::EditorReceiverSystem;
pub(crate) use self::editor_sender::EditorSenderSystem;
pub(crate) use self::entity_handler::EntityHandlerSystem;
pub(crate) use self::read_component::ReadComponentSystem;
pub(crate) use self::read_resource::ReadResourceSystem;
pub(crate) use self::write_component::WriteComponentSystem;
pub(crate) use self::write_resource::WriteResourceSystem;