maple_engine 0.3.0

Engine implementation of maple engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Contains components that nodes use such as their transform or Mesh.

mod event_reciever;
// pub mod mesh;
pub mod node_transform;

// re-export components
pub use event_reciever::{EventReceiver, FixedUpdate, Ready, Update};
// pub use mesh::Mesh;
pub use node_transform::NodeTransform;

pub use event_reciever::*;