|
#![feature(hash_extract_if)]
|
|
|
|
pub mod game;
|
|
pub mod render;
|
|
pub mod input_event;
|
|
pub mod resources;
|
|
pub mod ecs;
|
|
pub mod math;
|
|
pub mod input;
|
|
pub mod castable_any;
|
|
pub mod plugin;
|
|
pub mod change_tracker;
|
|
|
|
pub use lyra_resource as assets;
|
|
|
|
pub use plugin::DefaultPlugins; |