Default to return AppExit from the program

This commit is contained in:
Daniel Lynn 2024-07-13 12:01:08 -05:00
parent 629d067adc
commit 77312bdb4a
Signed by: daniel
GPG Key ID: 655C07B9B3DDC88B

View File

@ -1,5 +1,5 @@
use bevy::prelude::*;
fn main() {
App::new().run();
fn main() -> AppExit {
App::new().run()
}