| Crates.io | resonance |
| lib.rs | resonance |
| version | 0.1.0 |
| created_at | 2025-10-19 09:37:00.309505+00 |
| updated_at | 2025-10-19 09:37:00.309505+00 |
| description | A modular game engine. Heavy work in progress. |
| homepage | |
| repository | https://github.com/adriankiezik/Resonance |
| max_upload_size | |
| id | 1890271 |
| size | 216,750 |
A modular game engine built on Bevy ECS.
⚠️ Heavy work in progress - Breaking changes expected. Usage not recommended.
This project is in very early stages. Core systems are being implemented and the API is subject to change.
use resonance::prelude::*;
fn main() {
Engine::new()
.add_plugin(CorePlugin::default())
.add_plugin(TransformPlugin::default())
.add_plugin(WindowPlugin::default())
.run();
}
MIT