fennel_engine/lib.rs
1//! A library providing abstractions over `fennel-core`, a simpler API and an ECS
2/// Application layer module
3pub mod app;
4/// Module providing basic systems like rendering on top of `specs`
5pub mod ecs;
6/// Helper event types for ECS
7pub mod events;
8/// Module providing component registry
9pub mod registry;
10/// Module providing functionality of scenes
11pub mod scenes;