Skip to content

Commit

Permalink
Remove a couple of unnecessary full paths (bevyengine#3699)
Browse files Browse the repository at this point in the history
  • Loading branch information
lufog committed Jan 16, 2022
1 parent e30199f commit 758fc5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/game/game_menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ mod splash {
pub struct SplashPlugin;

impl Plugin for SplashPlugin {
fn build(&self, app: &mut bevy::prelude::App) {
fn build(&self, app: &mut App) {
// As this plugin is managing the splash screen, it will focus on the state `GameState::Splash`
app
// When entering the state, spawn everything needed for this screen
Expand Down Expand Up @@ -245,7 +245,7 @@ mod menu {
pub struct MenuPlugin;

impl Plugin for MenuPlugin {
fn build(&self, app: &mut bevy::prelude::App) {
fn build(&self, app: &mut App) {
app
// At start, the menu is not enabled. This will be changed in `menu_setup` when
// entering the `GameState::Menu` state.
Expand Down

0 comments on commit 758fc5a

Please sign in to comment.