pebble-engine 0.2.2

A modular, ECS-style graphics/app framework for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub use crate::app::{App, SystemStage};
pub use crate::assets::{
    handle::Handle,
    plugin::AssetPlugin,
    storage::{Assets, ProcessedAssets, RawAssetHandle},
    upload::Asset,
};
pub use crate::ecs::{
    plugin::Plugin,
    resources::Resources,
    system::{Commands, IntoSystem, Local, Query, Res, ResMut, System},
};
pub use crate::rendering::{
    backend::*, errors::AcquireError, graphics_plugin::GraphicsPlugin, render_plugin::RenderPlugin,
    sync::InitSender, window::*, window_plugin::WindowPlugin,
};