dragon 0.1.3

3D/2D game engines implemented with ECS concepts
Documentation

pub mod entity;
pub mod component;
pub mod system;
pub mod world;
pub mod components;
pub mod systems;
pub mod stage;

pub use component::Component;
pub use components::{
    CameraComponent,
    MeshComponent,
    TransformComponent,
    WidgetComponent,
};

pub use system::System;
pub use systems::rendering::RenderingSystem;

pub use stage::Stage;

pub use world::{ World, WorldState };