use bevy::prelude::*;
use bevy_hotpatching_experiments::prelude::*;
fn main() -> AppExit {
App::new()
.add_plugins(DefaultPlugins)
.add_plugins(SimpleSubsecondPlugin::default())
.add_systems(Update, greet)
.run()
}
#[hot(hot_patch_signature = true)]
fn greet() {
info_once!(
"Hello from a hotpatched system! Try changing this string while the app is running!"
);
}