2023-10-21 22:19:34 -04:00
|
|
|
#![feature(hash_extract_if)]
|
2023-10-22 21:49:31 -04:00
|
|
|
#![feature(lint_reasons)]
|
2023-11-04 11:34:27 -04:00
|
|
|
#![feature(trait_alias)]
|
2023-10-21 22:19:34 -04:00
|
|
|
|
2023-09-08 00:46:27 -04:00
|
|
|
pub mod game;
|
|
|
|
pub mod render;
|
|
|
|
pub mod resources;
|
|
|
|
pub mod ecs;
|
|
|
|
pub mod math;
|
|
|
|
pub mod input;
|
2023-09-09 10:51:58 -04:00
|
|
|
pub mod castable_any;
|
|
|
|
pub mod plugin;
|
2023-09-16 11:52:20 -04:00
|
|
|
pub mod change_tracker;
|
2023-09-10 00:38:54 -04:00
|
|
|
|
2023-09-14 12:58:59 -04:00
|
|
|
pub use lyra_resource as assets;
|
2023-09-10 00:38:54 -04:00
|
|
|
|
2023-09-14 12:58:59 -04:00
|
|
|
pub use plugin::DefaultPlugins;
|